summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-08.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/tutorial1-08.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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>