summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-06.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-16 19:11:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-16 19:11:00 +0900
commit82ecd83484c9fa1ede059986ab771e74e33e68ef (patch)
treed0e76f19632bb02fc55028625bdb903902e1bac1 /doc/html/tutorial1-06.html
parentc55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff)
downloadtqt3-82ecd83484c9fa1ede059986ab771e74e33e68ef.tar.gz
tqt3-82ecd83484c9fa1ede059986ab771e74e33e68ef.zip
Rename layout nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial1-06.html')
-rw-r--r--doc/html/tutorial1-06.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/tutorial1-06.html b/doc/html/tutorial1-06.html
index f8fcf8fb..a2e5c23a 100644
--- a/doc/html/tutorial1-06.html
+++ b/doc/html/tutorial1-06.html
@@ -48,17 +48,17 @@ widget as a child widget.
#include &lt;<a href="tqslider-h.html">tqslider.h</a>&gt;
#include &lt;<a href="tqlcdnumber-h.html">tqlcdnumber.h</a>&gt;
#include &lt;<a href="tqfont-h.html">tqfont.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
#include &lt;<a href="tqgrid-h.html">tqgrid.h</a>&gt;
-class LCDRange : public <a href="ntqvbox.html">TQVBox</a>
+class LCDRange : public <a href="tqvbox.html">TQVBox</a>
{
public:
LCDRange( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 );
};
<a name="f554"></a>LCDRange::LCDRange( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
<a href="tqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="tqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
<a href="tqslider.html">TQSlider</a> * slider = new <a href="tqslider.html">TQSlider</a>( Horizontal, this, "slider" );
@@ -67,7 +67,7 @@ public:
<a href="tqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="tqslider.html#valueChanged">valueChanged</a>(int)), lcd, TQ_SLOT(<a href="tqlcdnumber.html#display">display</a>(int)) );
}
-class MyWidget : public <a href="ntqvbox.html">TQVBox</a>
+class MyWidget : public <a href="tqvbox.html">TQVBox</a>
{
public:
MyWidget( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 );
@@ -75,7 +75,7 @@ public:
<a name="f555"></a>MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
<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 ) );
@@ -104,7 +104,7 @@ int main( int argc, char **argv )
<p> <h2> Line-by-line Walkthrough
</h2>
-<a name="1"></a><p> <pre> class LCDRange : public <a href="ntqvbox.html">TQVBox</a>
+<a name="1"></a><p> <pre> class LCDRange : public <a href="tqvbox.html">TQVBox</a>
{
public:
LCDRange( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 );
@@ -113,7 +113,7 @@ int main( int argc, char **argv )
<p> The LCDRange widget is a widget without any API. It just has a
constructor. This sort of widget is not very useful, so we'll add some API later.
<p> <pre> LCDRange::LCDRange( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
<a href="tqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="tqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
<a href="tqslider.html">TQSlider</a> * slider = new <a href="tqslider.html">TQSlider</a>( Horizontal, this, "slider" );
@@ -126,7 +126,7 @@ constructor. This sort of widget is not very useful, so we'll add some API later
<a href="tutorial1-05.html#constructor">MyWidget constructor</a> in Chapter 5.
The only differences are that the button is left out and the class
is renamed.
-<p> <pre> class MyWidget : public <a href="ntqvbox.html">TQVBox</a>
+<p> <pre> class MyWidget : public <a href="tqvbox.html">TQVBox</a>
{
public:
MyWidget( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 );
@@ -134,7 +134,7 @@ is renamed.
</pre>
<p> MyWidget, too, contains no API except a constructor.
<p> <pre> MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
<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 ) );