summaryrefslogtreecommitdiffstats
path: root/src/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/tqcolor_x11.cpp2
-rw-r--r--src/kernel/tqprocess.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/tqcolor_x11.cpp b/src/kernel/tqcolor_x11.cpp
index 09a8b8880..fe5f6685c 100644
--- a/src/kernel/tqcolor_x11.cpp
+++ b/src/kernel/tqcolor_x11.cpp
@@ -631,7 +631,7 @@ void TQColor::setSystemNamedColor( const TQString& name )
// setSystemNamedColor should look up rgb values from the built in
// color tables first (see tqcolor_p.cpp), and failing that, use
// the window system's interface for translating names to rgb values...
- // we do this so that things like uic can load an XPM file with named colors
+ // we do this so that things like tquic can load an XPM file with named colors
// and convert it to a png without having to use window system functions...
d.argb = qt_get_rgb_val( name.latin1() );
TQRgb rgb;
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