summaryrefslogtreecommitdiffstats
path: root/kjsembed/ksimpleprocess.h
diff options
context:
space:
mode:
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();