summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-08.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-08.html')
-rw-r--r--doc/html/tutorial1-08.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tutorial1-08.html b/doc/html/tutorial1-08.html
index 629ec4818..c276d5411 100644
--- a/doc/html/tutorial1-08.html
+++ b/doc/html/tutorial1-08.html
@@ -154,7 +154,7 @@ that the angle has changed. The <tt>emit</tt> keyword is unique to TQt and
not regular C++ syntax. In fact, it is a macro.
<p> <pre> <a name="x2336"></a>void CannonField::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * )
{
- <a href="ntqstring.html">TQString</a> s = "Angle = " + TQString::number( ang );
+ <a href="tqstring.html">TQString</a> s = "Angle = " + TQString::number( ang );
<a href="ntqpainter.html">TQPainter</a> p( this );
<a name="x2335"></a> p.<a href="ntqpainter.html#drawText">drawText</a>( 200, 200, s );
}
@@ -164,7 +164,7 @@ argument contains a description of the paint event. <a href="qpaintevent.html">T
contains the region in the widget that must be updated. For the time
being, we will be lazy and just paint everything.
<p> Our code displays the angle value in the widget at a fixed position.
-First we create a <a href="ntqstring.html">TQString</a> with some text and the angle; then we create
+First we create a <a href="tqstring.html">TQString</a> with some text and the angle; then we create
a <a href="ntqpainter.html">TQPainter</a> operating on this widget and use it to paint the string.
We'll come back to TQPainter later; it can do a great many things.
<p> <h3> <a href="t8-main-cpp.html">t8/main.cpp</a>