From 7552c6d73043b1040139033f6864db48ae5446cf Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 2 Jul 2024 21:37:22 +0900 Subject: Rename main window nt* related files to equivalent tq*. The file "ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro --- doc/html/tutorial2-07.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/tutorial2-07.html') diff --git a/doc/html/tutorial2-07.html b/doc/html/tutorial2-07.html index 3ff6dc9bb..c40431813 100644 --- a/doc/html/tutorial2-07.html +++ b/doc/html/tutorial2-07.html @@ -42,7 +42,7 @@ body { background: #ffffff; color: black; } { TQFile file( filename ); if ( !file.open( IO_ReadOnly ) ) { - statusBar()->message( TQString( "Failed to load \'%1\'" ). + statusBar()->message( TQString( "Failed to load \'%1\'" ). arg( filename ), 2000 ); return; } @@ -77,7 +77,7 @@ draw the chart and mark it as unchanged. {
        TQFile file( m_filename );
         if ( !file.open( IO_WriteOnly ) ) {
-            statusBar()->message( TQString( "Failed to save \'%1\'" ).
+            statusBar()->message( TQString( "Failed to save \'%1\'" ).
                                     arg( m_filename ), 2000 );
             return;
         }
@@ -89,7 +89,7 @@ draw the chart and mark it as unchanged.
         file.close();
 
         setCaption( TQString( "Chart -- %1" ).arg( m_filename ) );
-        statusBar()->message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 );
+        statusBar()->message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 );
         m_changed = FALSE;
     }
 
-- cgit v1.2.3