summaryrefslogtreecommitdiffstats
path: root/doc/html/commonproblems.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/commonproblems.html')
-rw-r--r--doc/html/commonproblems.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/commonproblems.html b/doc/html/commonproblems.html
index c238d909a..c8abf99f8 100644
--- a/doc/html/commonproblems.html
+++ b/doc/html/commonproblems.html
@@ -54,8 +54,8 @@ machine</a>
<h2> Link error, complaining about a lack of <tt>vtbl</tt>, <tt>_vtbl</tt>, <tt>__vtbl</tt> or similar
</h2>
<a name="1"></a><p> This indicates that you've included the <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> macro in a class
-declaration and probably also run the <a href="moc.html#moc">moc</a>, but forgot to link the
-moc-generated object code into your executable. See <a href="moc.html">Using the Meta Object Compiler</a> for details on how to use moc.
+declaration and probably also run the <a href="tqmoc.html#tqmoc">tqmoc</a>, but forgot to link the
+tqmoc-generated object code into your executable. See <a href="tqmoc.html">Using the TQt Meta Object Compiler</a> for details on how to use tqmoc.
<p> <a name="diffver"></a>
<h2> Using different versions of TQt on the same machine
</h2>
@@ -70,12 +70,12 @@ TQt. Those with a command-line compiler will typically use options such as
the relevant release of TQt.
<p> <dt>Meta Object Compiler and other tools - Compile time
-<p> <dd>Programmers need to run <em>moc</em> and other tools such as <em>uic</em>. These
+<p> <dd>Programmers need to run <em>tqmoc</em> and other tools such as <em>tquic</em>. These
tools are usually located in the <tt>bin</tt> subdirectory of TQt distributions.
-Either run <tt>"$TQTDIR"/bin/moc</tt> and <tt>"$TQTDIR"/bin/uic</tt> or add <tt>"$TQTDIR"/bin</tt>
-to your <tt>PATH</tt> and run <a href="moc.html#moc">moc</a> and <tt>uic</tt>. If you use <tt>qmake</tt> the
+Either run <tt>"$TQTDIR"/bin/tqmoc</tt> and <tt>"$TQTDIR"/bin/tquic</tt> or add <tt>"$TQTDIR"/bin</tt>
+to your <tt>PATH</tt> and run <a href="tqmoc.html#tqmoc">tqmoc</a> and <tt>uic</tt>. If you use <tt>qmake</tt> the
appropriate lines will be added to your Makefiles so that <em>uic</em> and
-<em>moc</em> will be executed as required.
+<em>tqmoc</em> will be executed as required.
<p> <dt>Static or shared libraries - Link time
<p> <dd>Programmers need to link with the TQt static or shared libraries. The TQt
libraries are usually located in the <tt>lib</tt> subdirectory of TQt distributions.
@@ -101,7 +101,7 @@ source package that contain all these files once they have been built.
usually consist of two parts:
<p> <ul>
<li> shared libraries in the run time package, usually called <tt>qt3</tt>.
-<p> <li> header files, static libraries, the moc and other tools in the developers'
+<p> <li> header files, static libraries, tqmoc and other tools in the developers'
kit, usually called <tt>qt3-dev</tt>.
<p> </ul>
<p> Depending on how you are using TQt, you need to make specific parts of
@@ -118,7 +118,7 @@ package with a name like <tt>qt</tt> and a developer package with a name
like <tt>qt-dev</tt>. You will need the appropriate packages:
<p> <ul>
<p> <li> 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 (<tt>qt3-dev</tt> or similar).
<p> <li> To run programs you will need the shared libraries of TQt 3.x and
TQt 2.x. They are included in the regular packages of TQt 3.x (<tt>qt3</tt>
@@ -131,7 +131,7 @@ need to set the environment variable <tt>TQTDIR</tt> to point to TQt 3.x.
</h3>
<a name="2-2"></a><p> You build and run programs for TQt 2.x and TQt 3.x. You will need:
<p> <ul>
-<p> <li> the header files, the libraries, the moc and other tools from TQt 3.x
+<p> <li> the header files, the libraries, tqmoc and other tools from TQt 3.x
and TQt 2.x to build programs,
<p> <li> the shared libraries of TQt 3.x and TQt 2.x to run programs.
<p> </ul>
@@ -186,7 +186,7 @@ setenv PATH ${TQTDIR}/bin:${PATH}
documentation appropriate to the version of TQt you're using. Also
your Makfiles may refer to <tt>"$TQTDIR"/include</tt> and <tt>"$TQTDIR"/lib</tt> to
include the proper header files and link with the proper libraries.
-Setting the <tt>PATH</tt> ensures that the proper version of moc and other
+Setting the <tt>PATH</tt> ensures that the proper version of tqmoc and other
tools is being used.
<p> <a name="nowinman"></a>
<h2> Using TQt on X11 without a window manager