summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial2-06.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/tutorial2-06.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial2-06.html')
-rw-r--r--doc/html/tutorial2-06.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial2-06.html b/doc/html/tutorial2-06.html
index 96eabdd41..e8bbcdaba 100644
--- a/doc/html/tutorial2-06.html
+++ b/doc/html/tutorial2-06.html
@@ -151,8 +151,8 @@ be drawn on. We then set the bar's brush to the color and pattern that
the user has specified for the element, set the pen to the pen we
created earlier (i.e. to <tt>NoPen</tt>) and we place the bar at position 0
in the Z-order. Finally we call show() to draw the bar on the canvas.
-<p> <pre> <a href="ntqstring.html">TQString</a> label = m_elements[i].label();
- <a name="x2576"></a> if ( !label.<a href="ntqstring.html#isEmpty">isEmpty</a>() || m_addValues != NO ) {
+<p> <pre> <a href="tqstring.html">TQString</a> label = m_elements[i].label();
+ <a name="x2576"></a> if ( !label.<a href="tqstring.html#isEmpty">isEmpty</a>() || m_addValues != NO ) {
double proX = m_elements[i].proX( HORIZONTAL_BAR );
double proY = m_elements[i].proY( HORIZONTAL_BAR );
if ( proX &lt; 0 || proY &lt; 0 ) {
@@ -213,9 +213,9 @@ proportional height ready to draw the next element.
CanvasText( int index, TQCanvas *canvas )
: <a href="tqcanvastext.html">TQCanvasText</a>( canvas ), m_index( index ) {}
- CanvasText( int index, const <a href="ntqstring.html">TQString</a>&amp; text, TQCanvas *canvas )
+ CanvasText( int index, const <a href="tqstring.html">TQString</a>&amp; text, TQCanvas *canvas )
: <a href="tqcanvastext.html">TQCanvasText</a>( text, canvas ), m_index( index ) {}
- CanvasText( int index, const <a href="ntqstring.html">TQString</a>&amp; text, TQFont font, TQCanvas *canvas )
+ CanvasText( int index, const <a href="tqstring.html">TQString</a>&amp; text, TQFont font, TQCanvas *canvas )
: <a href="tqcanvastext.html">TQCanvasText</a>( text, font, canvas ), m_index( index ) {}
int index() const { return m_index; }