From 252a2ec8b0f0f9cf20c947737087b24a8185b588 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 10 Jul 2024 18:56:16 +0900 Subject: Rename IO and network class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/chart-chartform_files-cpp.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/html/chart-chartform_files-cpp.html') diff --git a/doc/html/chart-chartform_files-cpp.html b/doc/html/chart-chartform_files-cpp.html index 124bd3f72..a00fbddde 100644 --- a/doc/html/chart-chartform_files-cpp.html +++ b/doc/html/chart-chartform_files-cpp.html @@ -35,8 +35,8 @@ body { background: #ffffff; color: black; }
#include "canvasview.h"
 #include "chartform.h"
 
-#include <ntqfile.h>
-#include <ntqfiledialog.h>
+#include <tqfile.h>
+#include <tqfiledialog.h>
 #include <ntqpainter.h>
 #include <ntqprinter.h>
 #include <tqstatusbar.h>
@@ -44,8 +44,8 @@ body { background: #ffffff; color: black; }
 
 void ChartForm::load( const TQString& filename )
 {
-    TQFile file( filename );
-    if ( !file.open( IO_ReadOnly ) ) {
+    TQFile file( filename );
+    if ( !file.open( IO_ReadOnly ) ) {
         statusBar()->message( TQString( "Failed to load \'%1\'" ).
                                 arg( filename ), 2000 );
         return;
@@ -71,7 +71,7 @@ void ChartForm::load( const TQString<
         }
     }
 
-    file.close();
+    file.close();
 
     TQString bad = "";
     if ( errors ) {
@@ -97,8 +97,8 @@ void ChartForm::fileSave()
         return;
     }
 
-    TQFile file( m_filename );
-    if ( !file.open( IO_WriteOnly ) ) {
+    TQFile file( m_filename );
+    if ( !file.open( IO_WriteOnly ) ) {
         statusBar()->message( TQString( "Failed to save \'%1\'" ).
                                 arg( m_filename ), 2000 );
         return;
@@ -108,7 +108,7 @@ void ChartForm::fileSave()
         if ( m_elements[i].isValid() )
             ts << m_elements[i];
 
-    file.close();
+    file.close();
 
     setCaption( TQString( "Chart -- %1" ).arg( m_filename ) );
     statusBar()->message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 );
@@ -118,7 +118,7 @@ void ChartForm::fileSave()
 
 void ChartForm::fileSaveAsPixmap()
 {
-    TQString filename = TQFileDialog::getSaveFileName(
+    TQString filename = TQFileDialog::getSaveFileName(
                             TQString::null, "Images (*.png *.xpm *.jpg)",
                             this, "file save as bitmap",
                             "Chart -- File Save As Bitmap" );
-- 
cgit v1.2.3