summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-06.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-06.html')
-rw-r--r--doc/html/tutorial1-06.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tutorial1-06.html b/doc/html/tutorial1-06.html
index 1249d3260..37570a1da 100644
--- a/doc/html/tutorial1-06.html
+++ b/doc/html/tutorial1-06.html
@@ -42,7 +42,7 @@ widget as a child widget.
**
****************************************************************/
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqslider-h.html">tqslider.h</a>&gt;
#include &lt;<a href="tqlcdnumber-h.html">tqlcdnumber.h</a>&gt;
@@ -79,7 +79,7 @@ public:
<a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" );
quit-&gt;<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+ <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) );
<a href="tqgrid.html">TQGrid</a> *grid = new <a href="tqgrid.html">TQGrid</a>( 4, this );
@@ -90,12 +90,12 @@ public:
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> a( argc, argv );
+ <a href="tqapplication.html">TQApplication</a> a( argc, argv );
MyWidget w;
- a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;w );
+ a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &amp;w );
w.<a href="tqwidget.html#show">show</a>();
- return a.<a href="ntqapplication.html#exec">exec</a>();
+ return a.<a href="tqapplication.html#exec">exec</a>();
}
</pre>
@@ -138,7 +138,7 @@ is renamed.
<a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" );
<a name="x2328"></a> quit-&gt;<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a name="x2321"></a> <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+ <a name="x2321"></a> <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) );
</pre>
<p> The push button that used to be in what is now LCDRange has been
separated so that we can have one "Quit" button and many LCDRange