summaryrefslogtreecommitdiffstats
path: root/doc/misc.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-06 17:29:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-06 17:29:49 +0900
commit587657561bb870d457a188a80bc0ce918ef5a0bd (patch)
treebaed0c3b38c4d11389c96c686967160a1b3027cd /doc/misc.doc
parent4161606c301841f973f0319f46e6853c4a3fe906 (diff)
downloadtqt3-587657561bb870d457a188a80bc0ce918ef5a0bd.tar.gz
tqt3-587657561bb870d457a188a80bc0ce918ef5a0bd.zip
Rename moc to tqmoc
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/misc.doc')
-rw-r--r--doc/misc.doc22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/misc.doc b/doc/misc.doc
index cebe6112..05d351a5 100644
--- a/doc/misc.doc
+++ b/doc/misc.doc
@@ -66,9 +66,9 @@ machine\endlink
\section1 Link error, complaining about a lack of \c vtbl, \c _vtbl, \c __vtbl or similar
This indicates that you've included the TQ_OBJECT macro in a class
-declaration and probably also run the moc, but forgot to link the
-moc-generated object code into your executable. See \link moc.html
-Using the Meta Object Compiler\endlink for details on how to use moc.
+declaration and probably also run tqmoc, but forgot to link the
+moc-generated object code into your executable. See \link tqmoc.html
+Using the Meta Object Compiler\endlink for details on how to use tqmoc.
\target diffver
\section1 Using different versions of TQt on the same machine
@@ -88,12 +88,12 @@ the relevant release of Qt.
<dt>Meta Object Compiler and other tools - Compile time
-<dd>Programmers need to run \e moc and other tools such as \e uic. These
+<dd>Programmers need to run \e tqmoc and other tools such as \e uic. These
tools are usually located in the \c bin subdirectory of TQt distributions.
-Either run \c "$TQTDIR"/bin/moc and \c "$TQTDIR"/bin/uic or add \c "$TQTDIR"/bin
-to your \c PATH and run \c moc and \c uic. If you use \c qmake the
+Either run \c "$TQTDIR"/bin/tqmoc and \c "$TQTDIR"/bin/tquic or add \c "$TQTDIR"/bin
+to your \c PATH and run \c tqmoc and \c tquic. If you use \c qmake the
appropriate lines will be added to your Makefiles so that \e uic and
-\e moc will be executed as required.
+\e tqmoc will be executed as required.
<dt>Static or shared libraries - Link time
@@ -128,7 +128,7 @@ usually consist of two parts:
\list
\i shared libraries in the run time package, usually called \c qt3.
-\i header files, static libraries, the moc and other tools in the developers'
+\i header files, static libraries, tqmoc and other tools in the developers'
kit, usually called \c qt3-dev.
\endlist
@@ -150,7 +150,7 @@ like \c qt-dev. You will need the appropriate packages:
\list
\i To build programs you will need the header files, the libraries,
-the moc and other tools from TQt 3.x. They are included in the developer
+tqmoc and other tools from TQt 3.x. They are included in the developer
package of TQt 3.x (\c qt3-dev or similar).
\i To run programs you will need the shared libraries of TQt 3.x and
@@ -169,7 +169,7 @@ You build and run programs for TQt 2.x and TQt 3.x. You will need:
\list
-\i the header files, the libraries, the moc and other tools from TQt 3.x
+\i the header files, the libraries, tqmoc and other tools from TQt 3.x
and TQt 2.x to build programs,
\i the shared libraries of TQt 3.x and TQt 2.x to run programs.
@@ -234,7 +234,7 @@ Setting \c TQTDIR ensures that the proper resources are used, such as the
documentation appropriate to the version of TQt you're using. Also
your Makfiles may refer to \c "$TQTDIR"/include and \c "$TQTDIR"/lib to
include the proper header files and link with the proper libraries.
-Setting the \c PATH ensures that the proper version of moc and other
+Setting the \c PATH ensures that the proper version of tqmoc and other
tools is being used.
\target nowinman