From d6f8bbb45b267065a6907e71ff9c98bb6d161241 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:56:07 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- lib/util/blockingkprocess.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/util/blockingkprocess.h') 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 -- cgit v1.2.1