summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-03.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-03.html
parentc55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff)
downloadtqt-82ecd834.tar.gz
tqt-82ecd834.zip
Rename layout nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial1-03.html')
-rw-r--r--doc/html/tutorial1-03.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tutorial1-03.html b/doc/html/tutorial1-03.html
index 714fce724..16a6bbc30 100644
--- a/doc/html/tutorial1-03.html
+++ b/doc/html/tutorial1-03.html
@@ -44,13 +44,13 @@ body { background: #ffffff; color: black; }
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.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;
int main( int argc, char **argv )
{
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
- <a href="ntqvbox.html">TQVBox</a> box;
+ <a href="tqvbox.html">TQVBox</a> box;
box.<a href="tqwidget.html#resize">resize</a>( 200, 120 );
<a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &amp;box );
@@ -69,12 +69,12 @@ int main( int argc, char **argv )
<p> <h2> Line-by-line Walkthrough
</h2>
-<a name="1"></a><p> <pre> #include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+<a name="1"></a><p> <pre> #include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
</pre>
-<p> We add an include of ntqvbox.h to get the layout class we'll use.
-<p> <pre> <a href="ntqvbox.html">TQVBox</a> box;
+<p> We add an include of tqvbox.h to get the layout class we'll use.
+<p> <pre> <a href="tqvbox.html">TQVBox</a> box;
</pre>
-<p> Here we simply create a vertical box container. The <a href="ntqvbox.html">TQVBox</a> arranges
+<p> Here we simply create a vertical box container. The <a href="tqvbox.html">TQVBox</a> arranges
its child widgets in a vertical row, one above the other, handing out
space according to each child's <a href="tqwidget.html#sizePolicy">TQWidget::sizePolicy</a>().
<p> <pre> <a name="x2300"></a> box.<a href="tqwidget.html#resize">resize</a>( 200, 120 );