|
|
@ -44,7 +44,7 @@ tdeio_umountwrapper::tdeio_umountwrapper(const TQString& url)
|
|
|
|
m_progress->show();
|
|
|
|
m_progress->show();
|
|
|
|
|
|
|
|
|
|
|
|
TQTimer *t = new TQTimer(this);
|
|
|
|
TQTimer *t = new TQTimer(this);
|
|
|
|
connect(t, TQT_SIGNAL(timeout()), TQT_SLOT(progressAdvance()));
|
|
|
|
connect(t, TQ_SIGNAL(timeout()), TQ_SLOT(progressAdvance()));
|
|
|
|
t->start(10, FALSE);
|
|
|
|
t->start(10, FALSE);
|
|
|
|
|
|
|
|
|
|
|
|
TDEProcess *p = new TDEProcess(this);
|
|
|
|
TDEProcess *p = new TDEProcess(this);
|
|
|
@ -52,8 +52,8 @@ tdeio_umountwrapper::tdeio_umountwrapper(const TQString& url)
|
|
|
|
*p << "-s";
|
|
|
|
*p << "-s";
|
|
|
|
*p << url;
|
|
|
|
*p << url;
|
|
|
|
kdDebug(7136) << "TDEProcess: " << url << endl;
|
|
|
|
kdDebug(7136) << "TDEProcess: " << url << endl;
|
|
|
|
connect(p, TQT_SIGNAL(processExited(TDEProcess *)),
|
|
|
|
connect(p, TQ_SIGNAL(processExited(TDEProcess *)),
|
|
|
|
this, TQT_SLOT(processFinished(TDEProcess *)));
|
|
|
|
this, TQ_SLOT(processFinished(TDEProcess *)));
|
|
|
|
p->start();
|
|
|
|
p->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|