diff options
Diffstat (limited to 'src/processexec.h')
-rw-r--r-- | src/processexec.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/processexec.h b/src/processexec.h index e259ca5..56672fc 100644 --- a/src/processexec.h +++ b/src/processexec.h @@ -25,7 +25,7 @@ *@author asdf */ -class ProcessExec : public KProcess { +class ProcessExec : public TDEProcess { Q_OBJECT public: ProcessExec(); @@ -35,19 +35,19 @@ public: bool runAndWait(); bool outputErrors() { return fErrors; }; - inline QString getStdoutData() { return buffer; }; + inline TQString getStdoutData() { return buffer; }; inline unsigned int getStdoutDataLen() { return buffer.length(); } inline void clearData() { buffer.truncate(0); fErrors= false; }; protected slots: - void slotReceivedStdout(KProcess *proc, char *buf, int len); - void slotReceivedStderr(KProcess *proc, char *buf, int len); + void slotReceivedStdout(TDEProcess *proc, char *buf, int len); + void slotReceivedStderr(TDEProcess *proc, char *buf, int len); private: static const int bufMax= 1023; - QString buffer; + TQString buffer; bool fErrors; }; |