summaryrefslogtreecommitdiffstats
path: root/kjsembed/ksimpleprocess.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:20:48 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:20:48 -0600
commite63beeb5bdb82987b1e00bc35178667786fbad48 (patch)
treeab77b6ac830b7944d5d1eb9ce8f81feb8fdab948 /kjsembed/ksimpleprocess.h
parent67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff)
downloadtdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz
tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip
Fix incorrect conversion
Diffstat (limited to 'kjsembed/ksimpleprocess.h')
-rw-r--r--kjsembed/ksimpleprocess.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kjsembed/ksimpleprocess.h b/kjsembed/ksimpleprocess.h
index 0fd5745d..c066490e 100644
--- a/kjsembed/ksimpleprocess.h
+++ b/kjsembed/ksimpleprocess.h
@@ -43,21 +43,21 @@ public:
* in value.
* Example:
*\code
- * TTQString myProc = KSimpleProcess::exec( "ps -uh" );
+ * TQString myProc = KSimpleProcess::exec( "ps -uh" );
* kdDebug() << "Running Processes\n" << myProc << endl;
*\endcode
*/
- static TTQString exec( const TTQString &args, bool addStdErr = false );
+ static TQString exec( const TQString &args, bool addStdErr = false );
private:
KSimpleProcess();
~KSimpleProcess();
void enter_loop();
- TTQString execInternal( const TTQString &args, bool addStdError);
+ TQString execInternal( const TQString &args, bool addStdError);
- TTQString m_currBuffer;
+ TQString m_currBuffer;
bool m_stdErrOn;
- TTQProcess *m_proc;
+ TQProcess *m_proc;
public slots:
void slotProcessExited();