summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/qmake/book/qmake-quick.leaf
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/qmake/book/qmake-quick.leaf')
-rw-r--r--tqtinterface/qt4/qmake/book/qmake-quick.leaf6
1 files changed, 3 insertions, 3 deletions
diff --git a/tqtinterface/qt4/qmake/book/qmake-quick.leaf b/tqtinterface/qt4/qmake/book/qmake-quick.leaf
index 15b832e..135e9fa 100644
--- a/tqtinterface/qt4/qmake/book/qmake-quick.leaf
+++ b/tqtinterface/qt4/qmake/book/qmake-quick.leaf
@@ -5,7 +5,7 @@
\e qmake uses information stored in project (.pro) files to determine
what should go in the makefiles it generates.
-A basic project file tqcontains information about the application, for
+A basic project file contains information about the application, for
example, which files are needed to compile the application, and which
configuration settings to use.
@@ -63,7 +63,7 @@ application's configuration.
\endcode
The "+=" is used here, because we add our configuration options to any
-that are already present. This is safer than using "=" which tqreplaces
+that are already present. This is safer than using "=" which replaces
all options with just those specified.
The \e qt part of the CONFIG line tells \e qmake that the application
@@ -76,7 +76,7 @@ set the compiler flags so that warnings are output.
The \e release part of the CONFIG line tells \e qmake that the
application must be built as a release application. During
-development, programmers may prefer to tqreplace \e release with \e
+development, programmers may prefer to replace \e release with \e
debug, which is discussed later.
\omit