summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-14.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-14.html')
-rw-r--r--doc/html/tutorial1-14.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-14.html b/doc/html/tutorial1-14.html
index 985dc9b78..6ad3faebf 100644
--- a/doc/html/tutorial1-14.html
+++ b/doc/html/tutorial1-14.html
@@ -200,13 +200,13 @@ matrix and return TRUE if it is inside the original barrel rectangle.
<p> <pre> #include &lt;<a href="qaccel-h.html">ntqaccel.h</a>&gt;
</pre>
<p> We include the class definition of <a href="ntqaccel.html">TQAccel</a>.
-<p> <pre> <a href="ntqvbox.html">TQVBox</a> *box = new <a href="ntqvbox.html">TQVBox</a>( this, "cannonFrame" );
+<p> <pre> <a href="tqvbox.html">TQVBox</a> *box = new <a href="tqvbox.html">TQVBox</a>( this, "cannonFrame" );
box-&gt;<a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken );
cannonField = new CannonField( box, "cannonField" );
</pre>
-<p> We create and set up a <a href="ntqvbox.html">TQVBox</a>, set its frame style, and then create
+<p> We create and set up a <a href="tqvbox.html">TQVBox</a>, set its frame style, and then create
<tt>CannonField</tt> as a child of that box. Because nothing else is in the
-box, the effect is that the <a href="ntqvbox.html">TQVBox</a> will put a frame around the
+box, the effect is that the <a href="tqvbox.html">TQVBox</a> will put a frame around the
CannonField.
<p> <pre> <a href="ntqaccel.html">TQAccel</a> *accel = new <a href="ntqaccel.html">TQAccel</a>( this );
<a name="x2438"></a><a name="x2437"></a> accel-&gt;<a href="ntqaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="ntqaccel.html#insertItem">insertItem</a>( Key_Enter ),
@@ -238,7 +238,7 @@ inherit the <a href="ntqt.html">TQt</a> namespace class.
grid-&gt;<a href="tqgridlayout.html#addWidget">addWidget</a>( box, 1, 1 );
<a name="x2442"></a> grid-&gt;<a href="tqgridlayout.html#setColStretch">setColStretch</a>( 1, 10 );
</pre>
-<p> We put <tt>box</tt> (the <a href="ntqvbox.html">TQVBox</a>), not the CannonField, in the lower-right
+<p> We put <tt>box</tt> (the <a href="tqvbox.html">TQVBox</a>), not the CannonField, in the lower-right
cell.
<p> <h2> Behavior
</h2>