From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tutorial2-06.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tutorial2-06.html') 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 NoPen) and we place the bar at position 0 in the Z-order. Finally we call show() to draw the bar on the canvas. -

                TQString label = m_elements[i].label();
-                if ( !label.isEmpty() || m_addValues != NO ) {
+

                TQString label = m_elements[i].label();
+                if ( !label.isEmpty() || m_addValues != NO ) {
                     double proX = m_elements[i].proX( HORIZONTAL_BAR );
                     double proY = m_elements[i].proY( HORIZONTAL_BAR );
                     if ( proX < 0 || proY < 0 ) {
@@ -213,9 +213,9 @@ proportional height ready to draw the next element.
 
         CanvasText( int index, TQCanvas *canvas )
             : TQCanvasText( canvas ), m_index( index ) {}
-        CanvasText( int index, const TQString& text, TQCanvas *canvas )
+        CanvasText( int index, const TQString& text, TQCanvas *canvas )
             : TQCanvasText( text, canvas ), m_index( index ) {}
-        CanvasText( int index, const TQString& text, TQFont font, TQCanvas *canvas )
+        CanvasText( int index, const TQString& text, TQFont font, TQCanvas *canvas )
             : TQCanvasText( text, font, canvas ), m_index( index ) {}
 
         int index() const { return m_index; }
-- 
cgit v1.2.3