summaryrefslogtreecommitdiffstats
path: root/tools/linguist
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linguist')
-rw-r--r--tools/linguist/book/linguist-manager.leaf6
-rw-r--r--tools/linguist/book/linguist-programmer.leaf8
-rw-r--r--tools/linguist/lupdate/fetchtr.cpp2
-rw-r--r--tools/linguist/shared/proparser.cpp2
4 files changed, 9 insertions, 9 deletions
diff --git a/tools/linguist/book/linguist-manager.leaf b/tools/linguist/book/linguist-manager.leaf
index 6c314d09d..643f71690 100644
--- a/tools/linguist/book/linguist-manager.leaf
+++ b/tools/linguist/book/linguist-manager.leaf
@@ -3,8 +3,8 @@
\index Release Manager
Two tools are provided for the release manager, \l lupdate and \l
-lrelease. These tools depend on \e qmake project files. You don't
-have to use \e qmake, though.
+lrelease. These tools depend on \e tqmake project files. You don't
+have to use \e tqmake, though.
A third tool, \c tqm2ts, can be used for converting TQt 2.x message
files to \c .ts files.
@@ -13,7 +13,7 @@ files to \c .ts files.
\index .pro Files
\index Project Files
-\index qmake!Project Files
+\index tqmake!Project Files
\l lupdate and \l lrelease depend on information in the application's
\c .pro TQt project file. There must be an entry in the \c TRANSLATIONS
diff --git a/tools/linguist/book/linguist-programmer.leaf b/tools/linguist/book/linguist-programmer.leaf
index 1e5147cf5..3227aba83 100644
--- a/tools/linguist/book/linguist-programmer.leaf
+++ b/tools/linguist/book/linguist-programmer.leaf
@@ -61,7 +61,7 @@ application at runtime.
\index .pro Files
\index Project Files
-\index qmake!Project Files
+\index tqmake!Project Files
For \l lupdate to work successfully, it must know which translation
files to produce. The files are simply listed in the application's \c
@@ -393,7 +393,7 @@ is shown when we run the application:
\index Latin
The first step is to create a project file, \c tt1.pro, that lists
-all the source files for the project. The project file can be a qmake
+all the source files for the project. The project file can be a tqmake
project file, or even an ordinary makefile. Any file that contains
\index SOURCES!in Project Files
@@ -527,7 +527,7 @@ saluto!".
\index .pro Files
\index Project Files
-\index qmake!Project Files
+\index tqmake!Project Files
\include tt2/tt2.pro
\caption tt2.pro
@@ -839,7 +839,7 @@ Version 1.0 consists of these files:
\i \c mainwindow.h contains the definition of \c MainWindow;
\i \c mainwindow.cpp contains the implementation of \c MainWindow;
\i \c main.cpp contains main();
-\i \c tt3.pro is the \e qmake project file.
+\i \c tt3.pro is the \e tqmake project file.
\i \c tt3_pt.ts is the Portuguese message file.
\endlist
diff --git a/tools/linguist/lupdate/fetchtr.cpp b/tools/linguist/lupdate/fetchtr.cpp
index 60229a97b..451916f29 100644
--- a/tools/linguist/lupdate/fetchtr.cpp
+++ b/tools/linguist/lupdate/fetchtr.cpp
@@ -45,7 +45,7 @@
#include <stdio.h>
#include <string.h>
-/* qmake ignore TQ_OBJECT */
+/* tqmake ignore TQ_OBJECT */
static const char MagicComment[] = "TRANSLATOR ";
diff --git a/tools/linguist/shared/proparser.cpp b/tools/linguist/shared/proparser.cpp
index 26866a99a..439d8c788 100644
--- a/tools/linguist/shared/proparser.cpp
+++ b/tools/linguist/shared/proparser.cpp
@@ -189,7 +189,7 @@ TQMap<TQString, TQString> proFileTagMap( const TQString& text )
int i = 0;
while ( (i = callToSystem.search((*it), i)) != -1 ) {
/*
- This code is stolen from qmake's project.cpp file.
+ This code is stolen from tqmake's project.cpp file.
Ideally we would use the same parser, so we wouldn't
have this code duplication.
*/