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.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/process-example.html b/doc/html/process-example.html
index ccf76102c..f9d36bb7c 100644
--- a/doc/html/process-example.html
+++ b/doc/html/process-example.html
@@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>
<p> This example shows you how to start other processes with TQt and how
-IO redirection is done. The example tries to start the uic (a tool
+IO redirection is done. The example tries to start the tquic (a tool
that comes with the TQt Designer) on a certain ui file and displays the
output of the command.
<p> <hr>
@@ -91,8 +91,8 @@ private:
// Set up the command and arguments.
// On the command line you would do:
- // uic -tr <a href="i18n.html#i18n">i18n</a> "small_dialog.ui"
-<a name="x97"></a> proc-&gt;<a href="tqprocess.html#addArgument">addArgument</a>( "uic" );
+ // tquic -tr <a href="i18n.html#i18n">i18n</a> "small_dialog.ui"
+<a name="x97"></a> proc-&gt;<a href="tqprocess.html#addArgument">addArgument</a>( "tquic" );
proc-&gt;<a href="tqprocess.html#addArgument">addArgument</a>( "-tr" );
proc-&gt;<a href="tqprocess.html#addArgument">addArgument</a>( "i18n" );
proc-&gt;<a href="tqprocess.html#addArgument">addArgument</a>( "small_dialog.ui" );
@@ -106,7 +106,7 @@ private:
// error handling
<a name="x96"></a> TQMessageBox::<a href="tqmessagebox.html#critical">critical</a>( 0,
<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>("Could not start the tquic command."),
<a href="tqobject.html#tr">tr</a>("Quit") );
exit( -1 );
}