diff options
Diffstat (limited to 'src/schedule.cpp')
-rw-r--r-- | src/schedule.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/schedule.cpp b/src/schedule.cpp index 02d11c4..80395d8 100644 --- a/src/schedule.cpp +++ b/src/schedule.cpp @@ -24,7 +24,7 @@ #include <kdebug.h> // REMOVEME /* Finding out ICEauthority path */ -#include <kprocio.h> +#include <tdeprocio.h> Schedule::Schedule( TQWidget* parent, const char* name, bool modal, WFlags fl ) : TQDialog( parent, name, modal, fl ) @@ -489,18 +489,18 @@ void Schedule::getICEauth() /* Code taken from freshklam.cpp */ TQString command=TQString("iceauth -v exit"); - iceproc = new KProcIO(); + iceproc = new TDEProcIO(); iceproc->setUseShell(TRUE); - iceproc->setUsePty(KProcIO::Stdout,TRUE); + iceproc->setUsePty(TDEProcIO::Stdout,TRUE); *iceproc<<command; - connect( iceproc, TQ_SIGNAL(readReady(KProcIO *)), - TQ_SLOT(slotICEoutput(KProcIO *)) ); + connect( iceproc, TQ_SIGNAL(readReady(TDEProcIO *)), + TQ_SLOT(slotICEoutput(TDEProcIO *)) ); connect( iceproc, TQ_SIGNAL(processExited(TDEProcess *)), TQ_SLOT(slotICEexited()) ); - iceproc->start(KProcIO::NotifyOnExit); + iceproc->start(TDEProcIO::NotifyOnExit); iceproc->closeWhenDone(); } @@ -510,7 +510,7 @@ void Schedule::slotICEexited() delete iceproc; } -void Schedule::slotICEoutput(KProcIO *) +void Schedule::slotICEoutput(TDEProcIO *) { TQString lineout = ""; int pos; |