summaryrefslogtreecommitdiffstats
path: root/doc/html/process-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/process-example.html')
-rw-r--r--doc/html/process-example.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/process-example.html b/doc/html/process-example.html
index d543ee68..ffb847c5 100644
--- a/doc/html/process-example.html
+++ b/doc/html/process-example.html
@@ -49,7 +49,7 @@ output of the command.
**
*****************************************************************************/
-#include &lt;<a href="qobject-h.html">ntqobject.h</a>&gt;
+#include &lt;<a href="tqobject-h.html">tqobject.h</a>&gt;
#include &lt;<a href="qprocess-h.html">ntqprocess.h</a>&gt;
#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
#include &lt;<a href="qtextview-h.html">ntqtextview.h</a>&gt;
@@ -81,8 +81,8 @@ private:
{
// Layout
output = new <a href="ntqtextview.html">TQTextView</a>( this );
- quitButton = new <a href="ntqpushbutton.html">TQPushButton</a>( <a href="ntqobject.html#tr">tr</a>("Quit"), this );
- <a href="ntqobject.html#connect">connect</a>( quitButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()),
+ 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>()) );
<a href="ntqwidget.html#resize">resize</a>( 500, 500 );
@@ -97,17 +97,17 @@ private:
proc-&gt;<a href="ntqprocess.html#addArgument">addArgument</a>( "i18n" );
proc-&gt;<a href="ntqprocess.html#addArgument">addArgument</a>( "small_dialog.ui" );
-<a name="x100"></a> <a href="ntqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="ntqprocess.html#readyReadStdout">readyReadStdout</a>()),
+<a name="x100"></a> <a href="tqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="ntqprocess.html#readyReadStdout">readyReadStdout</a>()),
this, TQ_SLOT(readFromStdout()) );
-<a name="x98"></a> <a href="ntqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="ntqprocess.html#processExited">processExited</a>()),
+<a name="x98"></a> <a href="tqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="ntqprocess.html#processExited">processExited</a>()),
this, TQ_SLOT(scrollToTop()) );
<a name="x101"></a> if ( !proc-&gt;<a href="ntqprocess.html#start">start</a>() ) {
// error handling
<a name="x96"></a> TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( 0,
- <a href="ntqobject.html#tr">tr</a>("Fatal error"),
- <a href="ntqobject.html#tr">tr</a>("Could not start the uic command."),
- <a href="ntqobject.html#tr">tr</a>("Quit") );
+ <a href="tqobject.html#tr">tr</a>("Fatal error"),
+ <a href="tqobject.html#tr">tr</a>("Could not start the uic command."),
+ <a href="tqobject.html#tr">tr</a>("Quit") );
exit( -1 );
}
}