summaryrefslogtreecommitdiffstats
path: root/doc/html/qmake-manual-7.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qmake-manual-7.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qmake-manual-7.html')
-rw-r--r--doc/html/qmake-manual-7.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/qmake-manual-7.html b/doc/html/qmake-manual-7.html
index 8c71e939..2fd24c8a 100644
--- a/doc/html/qmake-manual-7.html
+++ b/doc/html/qmake-manual-7.html
@@ -56,9 +56,9 @@ body { background: #ffffff; color: black; }
#include &lt;stdlib&gt;
#include &lt;iostream&gt;
#include &lt;vector&gt;
- #include &lt;qapplication.h&gt; // TQt includes
- #include &lt;qpushbutton.h&gt;
- #include &lt;qlabel.h&gt;
+ #include &lt;ntqapplication.h&gt; // TQt includes
+ #include &lt;ntqpushbutton.h&gt;
+ #include &lt;ntqlabel.h&gt;
#include "thirdparty/include/libmain.h"
#include "my_stable_class.h"
...
@@ -121,15 +121,15 @@ body { background: #ffffff; color: black; }
/* Add C++ includes here */
# include &lt;iostream&gt;
- # include &lt;qapplication.h&gt;
- # include &lt;qpushbutton.h&gt;
- # include &lt;qlabel.h&gt;
+ # include &lt;ntqapplication.h&gt;
+ # include &lt;ntqpushbutton.h&gt;
+ # include &lt;ntqlabel.h&gt;
#endif
</pre>
<p><b>myobject.h</b></p>
-<pre> #include &lt;<a href="qobject-h.html">qobject.h</a>&gt;
+<pre> #include &lt;<a href="qobject-h.html">ntqobject.h</a>&gt;
- class MyObject : public <a href="qobject.html">TQObject</a>
+ class MyObject : public <a href="ntqobject.html">TQObject</a>
{
public:
MyObject();
@@ -138,11 +138,11 @@ body { background: #ffffff; color: black; }
</pre>
<p><b>myobject.cpp</b></p>
<pre> #include &lt;iostream&gt;
- #include &lt;<a href="qobject-h.html">qobject.h</a>&gt;
+ #include &lt;<a href="qobject-h.html">ntqobject.h</a>&gt;
#include "myobject.h"
MyObject::MyObject()
- : <a href="qobject.html">TQObject</a>()
+ : <a href="ntqobject.html">TQObject</a>()
{
std::cout &lt;&lt; "MyObject::MyObject()\n";
}
@@ -156,23 +156,23 @@ body { background: #ffffff; color: black; }
}
</pre>
<p><b>main.cpp</b></p>
-<pre> #include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
- #include &lt;<a href="qpushbutton-h.html">qpushbutton.h</a>&gt;
- #include &lt;<a href="qlabel-h.html">qlabel.h</a>&gt;
+<pre> #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+ #include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+ #include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include "myobject.h"
#include "mydialog.h"
int main(int argc, char **argv)
{
- <a href="qapplication.html">TQApplication</a> app(argc, argv);
+ <a href="ntqapplication.html">TQApplication</a> app(argc, argv);
MyObject obj;
MyDialog dia;
- app.<a href="qapplication.html#setMainWidget">setMainWidget</a>( &amp;dia );
- dia.connect( dia.aButton, SIGNAL(clicked()), SLOT(<a href="qwidget.html#close">close</a>()) );
+ app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;dia );
+ dia.connect( dia.aButton, SIGNAL(clicked()), SLOT(<a href="ntqwidget.html#close">close</a>()) );
dia.show();
- return app.<a href="qapplication.html#exec">exec</a>();
+ return app.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>
<p><b>precompile.pro</b></p>