From a30f5359f03c3017fa19a6770fab32d25d22cb87 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 15 Jul 2024 19:08:22 +0900 Subject: Rename graphics class nt* related files to equivalent tq* (part 1) Signed-off-by: Michele Calgaro --- doc/html/chart-setdataform-cpp.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/chart-setdataform-cpp.html') diff --git a/doc/html/chart-setdataform-cpp.html b/doc/html/chart-setdataform-cpp.html index bc911fe24..737eb5574 100644 --- a/doc/html/chart-setdataform-cpp.html +++ b/doc/html/chart-setdataform-cpp.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
#include "setdataform.h"
 #include "chartform.h"
 
-#include <ntqcolordialog.h>
+#include <tqcolordialog.h>
 #include <ntqcombobox.h>
 #include <ntqlayout.h>
 #include <ntqpixmap.h>
@@ -154,10 +154,10 @@ const int MAX_PATTERNS = 14;
                 TQString( "%1" ).arg( element.value(), 0, 'f',
                                      m_decimalPlaces ) );
 
-        TQColor color = element.valueColor();
+        TQColor color = element.valueColor();
         pix.fill( color );
         table->setPixmap( i, 1, pix );
-        table->setText( i, 1, color.name() );
+        table->setText( i, 1, color.name() );
 
         TQComboBox *combobox = new TQComboBox;
         for ( int j = 0; j < MAX_PATTERNS; ++j )
@@ -170,7 +170,7 @@ const int MAX_PATTERNS = 14;
         color = element.labelColor();
         pix.fill( color );
         table->setPixmap( i, 4, pix );
-        table->setText( i, 4, color.name() );
+        table->setText( i, 4, color.name() );
     }
 
 }
@@ -209,14 +209,14 @@ void SetDataForm::setColor( int row, int col )
     if ( !( col == 1 || col == 4 ) )
         return;
 
-    TQColor color = TQColorDialog::getColor(
+    TQColor color = TQColorDialog::getColor(
                         TQColor( table->text( row, col ) ),
                         this, "color dialog" );
-    if ( color.isValid() ) {
+    if ( color.isValid() ) {
         TQPixmap pix = table->pixmap( row, col );
         pix.fill( color );
         table->setPixmap( row, col, pix );
-        table->setText( row, col, color.name() );
+        table->setText( row, col, color.name() );
     }
 }
 
-- 
cgit v1.2.3