summaryrefslogtreecommitdiffstats
path: root/src/kernel/tqprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/tqprocess.cpp')
-rw-r--r--src/kernel/tqprocess.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/tqprocess.cpp b/src/kernel/tqprocess.cpp
index db2318a30..bfca757a8 100644
--- a/src/kernel/tqprocess.cpp
+++ b/src/kernel/tqprocess.cpp
@@ -109,14 +109,14 @@
you \e really want to terminate the program, without it having any
chance to clean up, you can use kill().
- As an example, suppose we want to start the \c uic command (a TQt
+ As an example, suppose we want to start the \c tquic command (a TQt
command line tool used with \e{TQt Designer}) and perform some
- operations on the output (the \c uic outputs the code it generates
+ operations on the output (the \c tquic 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 i18n". On the command line we would write:
\code
- uic -tr i18n small_dialog.ui
+ tquic -tr i18n small_dialog.ui
\endcode
\quotefile process/process.cpp
@@ -129,7 +129,7 @@
\printline {
\skipto proc = new TQProcess( this );
\printline proc = new TQProcess( this );
- \skipto proc->addArgument( "uic" );
+ \skipto proc->addArgument( "tquic" );
\printuntil this, TQ_SLOT(readFromStdout()) );
\skipto if ( !proc->start() ) {
\printuntil // error handling