diff options
Diffstat (limited to 'tools/designer')
-rw-r--r-- | tools/designer/designer.pro | 4 | ||||
-rw-r--r-- | tools/designer/designer/customwidgeteditor.ui | 2 | ||||
-rw-r--r-- | tools/designer/designer/designer_de.ts | 2 | ||||
-rw-r--r-- | tools/designer/designer/designer_fr.ts | 2 | ||||
-rw-r--r-- | tools/designer/tools/conv2ui/main.cpp | 6 | ||||
-rw-r--r-- | tools/designer/tools/createcw/createcw.pro | 2 | ||||
-rw-r--r-- | tools/designer/tools/createcw/main.cpp | 4 |
7 files changed, 11 insertions, 11 deletions
diff --git a/tools/designer/designer.pro b/tools/designer/designer.pro index bbe68ad..337bbb4 100644 --- a/tools/designer/designer.pro +++ b/tools/designer/designer.pro @@ -6,8 +6,8 @@ SUBDIRS = uic \ uilib \ designer \ app \ - tools/tqtcreatecw \ - tools/tqtconv2ui + tools/createcw \ + tools/conv2ui dll:SUBDIRS *= editor plugins shared:SUBDIRS *= editor plugins diff --git a/tools/designer/designer/customwidgeteditor.ui b/tools/designer/designer/customwidgeteditor.ui index 127ab4a..6f025fc 100644 --- a/tools/designer/designer/customwidgeteditor.ui +++ b/tools/designer/designer/customwidgeteditor.ui @@ -186,7 +186,7 @@ </property> <property name="whatsThis" stdset="0"> <string><b>Load Descriptions</b><p>Loads a file which contains descriptions of custom widgets, so that these custom widgets can be used in the Qt Designer.</p> -<p>Since it is a lot of work to type in all the information for custom widgets, you should consider using the tqtcreatecw tool which is in $QTDIR/tools/designer/tools/tqtcreatecw. Using tqtcreatecw you can create custom widget description files for your custom widgets without the need to type in all the information manually. For more information about the README file in the tqtcreatecw directory</p></string> +<p>Since it is a lot of work to type in all the information for custom widgets, you should consider using the createcw tool which is in $QTDIR/tools/designer/tools/createcw. Using createcw you can create custom widget description files for your custom widgets without the need to type in all the information manually. For more information about the README file in the createcw directory</p></string> </property> </widget> <widget class="QPushButton" row="4" column="1"> diff --git a/tools/designer/designer/designer_de.ts b/tools/designer/designer/designer_de.ts index f2c55cf..64f3cf3 100644 --- a/tools/designer/designer/designer_de.ts +++ b/tools/designer/designer/designer_de.ts @@ -424,7 +424,7 @@ so it is not possible to rename it to this name.</source> </message> <message encoding="UTF-8"> <source><b>Load Descriptions</b><p>Loads a file which contains descriptions of custom widgets, so that these custom widgets can be used in the Qt Designer.</p> -<p>As it is a lot of work to type in all the information for custom widgets, you should check the tool tqtcreatecw which you can find in $QTDIR/tools/designer/tools/tqtcreatecw. Using that tool you can create custom widget description files for your custom widgets without the need of typing in all that information. For more information about that see the README file in that directory</p></source> +<p>As it is a lot of work to type in all the information for custom widgets, you should check the tool createcw which you can find in $QTDIR/tools/designer/tools/createcw. Using that tool you can create custom widget description files for your custom widgets without the need of typing in all that information. For more information about that see the README file in that directory</p></source> <translation type="unfinished"></translation> </message> <message encoding="UTF-8"> diff --git a/tools/designer/designer/designer_fr.ts b/tools/designer/designer/designer_fr.ts index f2c55cf..64f3cf3 100644 --- a/tools/designer/designer/designer_fr.ts +++ b/tools/designer/designer/designer_fr.ts @@ -424,7 +424,7 @@ so it is not possible to rename it to this name.</source> </message> <message encoding="UTF-8"> <source><b>Load Descriptions</b><p>Loads a file which contains descriptions of custom widgets, so that these custom widgets can be used in the Qt Designer.</p> -<p>As it is a lot of work to type in all the information for custom widgets, you should check the tool tqtcreatecw which you can find in $QTDIR/tools/designer/tools/tqtcreatecw. Using that tool you can create custom widget description files for your custom widgets without the need of typing in all that information. For more information about that see the README file in that directory</p></source> +<p>As it is a lot of work to type in all the information for custom widgets, you should check the tool createcw which you can find in $QTDIR/tools/designer/tools/createcw. Using that tool you can create custom widget description files for your custom widgets without the need of typing in all that information. For more information about that see the README file in that directory</p></source> <translation type="unfinished"></translation> </message> <message encoding="UTF-8"> diff --git a/tools/designer/tools/conv2ui/main.cpp b/tools/designer/tools/conv2ui/main.cpp index 2859c3a..7ede6c7 100644 --- a/tools/designer/tools/conv2ui/main.cpp +++ b/tools/designer/tools/conv2ui/main.cpp @@ -137,11 +137,11 @@ QString Conv2ui::absName( const QString & filename ) void printHelpMessage( QStringList & formats ) { - printf( "Usage: tqtconv2ui [options] <file> <destination directory>\n\n" ); + printf( "Usage: conv2ui [options] <file> <destination directory>\n\n" ); printf( "Options:\n"); printf( "\t-help\t\tDisplay this information\n" ); printf( "\t-silent\t\tDon't write any messages\n"); - printf( "\t-version\tDisplay version of tqtconv2ui\n"); + printf( "\t-version\tDisplay version of conv2ui\n"); printf( "Supported file formats:\n" ); for ( QStringList::Iterator it = formats.begin(); it != formats.end(); ++it ) printf( "\t%s\n", (*it).latin1() ); @@ -201,7 +201,7 @@ int main( int argc, char ** argv ) if ( !silent ) { printf( "Qt user interface file converter.\n" ); if ( unrecognized ) { - printf( "tqtconv2ui: Unrecognized option\n" ); + printf( "conv2ui: Unrecognized option\n" ); } } if ( version ) { diff --git a/tools/designer/tools/createcw/createcw.pro b/tools/designer/tools/createcw/createcw.pro index 875a2e7..415c0be 100644 --- a/tools/designer/tools/createcw/createcw.pro +++ b/tools/designer/tools/createcw/createcw.pro @@ -2,7 +2,7 @@ TEMPLATE = app CONFIG += qt warn_on release HEADERS = SOURCES = main.cpp -TARGET = tqtcreatecw +TARGET = createcw target.path = $$bins.path INSTALLS += target diff --git a/tools/designer/tools/createcw/main.cpp b/tools/designer/tools/createcw/main.cpp index 3322ee6..78f8562 100644 --- a/tools/designer/tools/createcw/main.cpp +++ b/tools/designer/tools/createcw/main.cpp @@ -172,8 +172,8 @@ int main( int argc, char **argv ) // // After that compile the program, link it with your custom widget // (library or object file) and run it like this: - // (unix): ./tqtcreatecw mywidgets.cw - // (win32): tqtcreatecw mywidgets.cw + // (unix): ./createcw mywidgets.cw + // (win32): createcw mywidgets.cw // // After that you can import this description file into the Qt // Designer using the Custom-Widget Dialog (See |