diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-08 12:56:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-08 12:56:43 +0900 |
commit | 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 (patch) | |
tree | 107cf55759cc3138bb1e0035b479bcd92127403a /doc/html/process-example.html | |
parent | e6077c30d14e9d662e8843c554db86c0d366d0b6 (diff) | |
download | tqt-0cf411b0.tar.gz tqt-0cf411b0.zip |
Rename text nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/process-example.html')
-rw-r--r-- | doc/html/process-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/process-example.html b/doc/html/process-example.html index 719651b89..9629f2950 100644 --- a/doc/html/process-example.html +++ b/doc/html/process-example.html @@ -52,7 +52,7 @@ output of the command. #include <<a href="tqobject-h.html">tqobject.h</a>> #include <<a href="qprocess-h.html">ntqprocess.h</a>> #include <<a href="qvbox-h.html">ntqvbox.h</a>> -#include <<a href="qtextview-h.html">ntqtextview.h</a>> +#include <<a href="tqtextview-h.html">tqtextview.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> @@ -73,14 +73,14 @@ public slots: private: <a href="ntqprocess.html">TQProcess</a> *proc; - <a href="ntqtextview.html">TQTextView</a> *output; + <a href="tqtextview.html">TQTextView</a> *output; <a href="ntqpushbutton.html">TQPushButton</a> *quitButton; }; <a name="f204"></a>UicManager::UicManager() { // Layout - output = new <a href="ntqtextview.html">TQTextView</a>( this ); + output = new <a href="tqtextview.html">TQTextView</a>( this ); quitButton = new <a href="ntqpushbutton.html">TQPushButton</a>( <a href="tqobject.html#tr">tr</a>("Quit"), this ); <a href="tqobject.html#connect">connect</a>( quitButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); @@ -116,7 +116,7 @@ void <a name="f205"></a>UicManager::readFromStdout() { // Read and process the data. // Bear in mind that the data might be output in chunks. -<a name="x99"></a><a name="x103"></a> output-><a href="ntqtextedit.html#append">append</a>( proc-><a href="ntqprocess.html#readStdout">readStdout</a>() ); +<a name="x99"></a><a name="x103"></a> output-><a href="tqtextedit.html#append">append</a>( proc-><a href="ntqprocess.html#readStdout">readStdout</a>() ); } void <a name="f206"></a>UicManager::scrollToTop() |