diff options
Diffstat (limited to 'lib/util/blockingkprocess.h')
-rw-r--r-- | lib/util/blockingkprocess.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/util/blockingkprocess.h b/lib/util/blockingkprocess.h index c5c8f5d9..b280b81b 100644 --- a/lib/util/blockingkprocess.h +++ b/lib/util/blockingkprocess.h @@ -33,7 +33,7 @@ class BlockingKProcess : public KProcess Q_OBJECT public: - BlockingKProcess(QObject *parent, const char *name=0); + BlockingKProcess(TQObject *parent, const char *name=0); BlockingKProcess(); virtual ~BlockingKProcess(); @@ -52,7 +52,7 @@ public: * Get the output of the run process * @return the output */ - QString stdOut() { return m_stdOut;} + TQString stdOut() { return m_stdOut;} /** * Clear the internal stdout buffer. Useful in case the class is reused. */ @@ -61,7 +61,7 @@ public: * Get the error output of the run process * @return the output */ - QString stdErr() { return m_stdErr;} + TQString stdErr() { return m_stdErr;} /** * Clear the internal stderr buffer. Useful in case the class is reused. */ @@ -82,11 +82,11 @@ private slots: private: void enter_loop(); - QString m_stdOut; - QString m_stdErr; + TQString m_stdOut; + TQString m_stdErr; bool m_timeout; int m_timeoutValue; - QTimer *m_timer; + TQTimer *m_timer; }; #endif |