summaryrefslogtreecommitdiffstats
path: root/doc/html/tqprocess.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqprocess.html')
-rw-r--r--doc/html/tqprocess.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqprocess.html b/doc/html/tqprocess.html
index 4a33ff03b..517b14669 100644
--- a/doc/html/tqprocess.html
+++ b/doc/html/tqprocess.html
@@ -131,14 +131,14 @@ program's process identifier is available from
use <a href="#tryTerminate">tryTerminate</a>(), but note that the program may ignore this. If
you <em>really</em> want to terminate the program, without it having any
chance to clean up, you can use <a href="#kill">kill</a>().
-<p> As an example, suppose we want to start the <tt>uic</tt> command (a TQt
+<p> As an example, suppose we want to start the <tt>tquic</tt> command (a TQt
command line tool used with <em>TQt Designer</em>) and perform some
-operations on the output (the <tt>uic</tt> outputs the code it generates
+operations on the output (the <tt>tquic</tt> outputs the code it generates
to standard output by default). Suppose further that we want to
run the program on the file "small_dialog.ui" with the command
line options "-tr <a href="i18n.html#i18n">i18n</a>". On the command line we would write:
<pre>
- uic -tr i18n small_dialog.ui
+ tquic -tr i18n small_dialog.ui
</pre>
<p>
@@ -148,7 +148,7 @@ this:
<p> <pre> UicManager::UicManager()
{
</pre><pre> proc = new TQProcess( this );
-</pre><pre> <a name="x2122"></a> proc-&gt;<a href="#addArgument">addArgument</a>( "uic" );
+</pre><pre> <a name="x2122"></a> proc-&gt;<a href="#addArgument">addArgument</a>( "tquic" );
proc-&gt;<a href="#addArgument">addArgument</a>( "-tr" );
proc-&gt;<a href="#addArgument">addArgument</a>( "i18n" );
proc-&gt;<a href="#addArgument">addArgument</a>( "small_dialog.ui" );