summaryrefslogtreecommitdiffstats
path: root/kjsembed/ksimpleprocess.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
commit479f5f799523bffbcc83dff581a2299c047c6fff (patch)
tree186aae707ed02aac6c7cab2fb14e97f72aca5e36 /kjsembed/ksimpleprocess.h
parentf1dbff6145c98324ff82e34448b7483727e8ace4 (diff)
downloadtdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz
tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kjsembed/ksimpleprocess.h')
-rw-r--r--kjsembed/ksimpleprocess.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kjsembed/ksimpleprocess.h b/kjsembed/ksimpleprocess.h
index 12b20805..cc825f05 100644
--- a/kjsembed/ksimpleprocess.h
+++ b/kjsembed/ksimpleprocess.h
@@ -22,8 +22,8 @@
#ifndef KSIMPLE_PROCESS_H
#define KSIMPLE_PROCESS_H
-#include <qobject.h>
-#include <qprocess.h>
+#include <tqobject.h>
+#include <tqprocess.h>
/**
* Very simple class that allows one to run a command and get the
@@ -43,21 +43,21 @@ public:
* in value.
* Example:
*\code
- * QString myProc = KSimpleProcess::exec( "ps -uh" );
+ * TQString myProc = KSimpleProcess::exec( "ps -uh" );
* kdDebug() << "Running Processes\n" << myProc << endl;
*\endcode
*/
- static QString exec( const QString &args, bool addStdErr = false );
+ static TQString exec( const TQString &args, bool addStdErr = false );
private:
KSimpleProcess();
~KSimpleProcess();
void enter_loop();
- QString execInternal( const QString &args, bool addStdError);
+ TQString execInternal( const TQString &args, bool addStdError);
- QString m_currBuffer;
+ TQString m_currBuffer;
bool m_stdErrOn;
- QProcess *m_proc;
+ TQProcess *m_proc;
public slots:
void slotProcessExited();