summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-11 22:21:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-11 22:21:44 +0900
commite93b60dfa24c4b72c1cffa7556949afe69654c02 (patch)
treec4ace60cd76f8f464683925074cb981f528b93e3 /src
parent8066b05478ac646d0410fc9cedca5f82163b53d3 (diff)
downloadtqt3-e93b60dfa24c4b72c1cffa7556949afe69654c02.tar.gz
tqt3-e93b60dfa24c4b72c1cffa7556949afe69654c02.zip
Rename uic to tquicHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r--src/kernel/tqcolor_x11.cpp2
-rw-r--r--src/kernel/tqprocess.cpp8
-rw-r--r--src/widgets/tqwidgetinterface_p.h2
-rw-r--r--src/widgets/tqwidgetplugin.cpp6
4 files changed, 9 insertions, 9 deletions
diff --git a/src/kernel/tqcolor_x11.cpp b/src/kernel/tqcolor_x11.cpp
index 09a8b888..fe5f6685 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 db2318a3..bfca757a 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
diff --git a/src/widgets/tqwidgetinterface_p.h b/src/widgets/tqwidgetinterface_p.h
index 81a158cc..9638a084 100644
--- a/src/widgets/tqwidgetinterface_p.h
+++ b/src/widgets/tqwidgetinterface_p.h
@@ -91,7 +91,7 @@ public:
virtual TQIconSet iconSet( const TQString &widget ) const = 0;
/*! In the implementation return the include file which is needed
- for the widget \a widget in the generated code which uic
+ for the widget \a widget in the generated code which tquic
generates. */
virtual TQString includeFile( const TQString &widget ) const = 0;
diff --git a/src/widgets/tqwidgetplugin.cpp b/src/widgets/tqwidgetplugin.cpp
index a12f1341..5508ac7f 100644
--- a/src/widgets/tqwidgetplugin.cpp
+++ b/src/widgets/tqwidgetplugin.cpp
@@ -393,7 +393,7 @@ TQIconSet TQWidgetPlugin::iconSet( const TQString & ) const
/*!
Returns the name of the include file that \e{TQt Designer} and \c
- uic should use to include the custom widget of class \a key in
+ tquic should use to include the custom widget of class \a key in
generated code.
The default implementation returns TQString::null.
@@ -702,7 +702,7 @@ TQWidgetList TQWidgetContainerPlugin::pages( const TQString &, TQWidget * ) cons
Operates on the plugin's \a key class.
This function is called from \e{TQt Designer}'s User Interface
- Compiler \c uic, when generating C++ code for inserting a page in
+ Compiler \c tquic, when generating C++ code for inserting a page in
the \a container custom widget. The name of the page widget which
should be inserted at the end of the container is \a page, and the
label of the page should be \a pageName.
@@ -715,7 +715,7 @@ TQWidgetList TQWidgetContainerPlugin::pages( const TQString &, TQWidget * ) cons
\endcode
Warning: If the code returned by this function contains invalid
- C++ syntax, the generated \c uic code will not compile.
+ C++ syntax, the generated \c tquic code will not compile.
*/
TQString TQWidgetContainerPlugin::createCode( const TQString &, const TQString &,