From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/sql-overview-table3-main-cpp.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/sql-overview-table3-main-cpp.html') diff --git a/doc/html/sql-overview-table3-main-cpp.html b/doc/html/sql-overview-table3-main-cpp.html index 0938101ac..ffae91a7e 100644 --- a/doc/html/sql-overview-table3-main-cpp.html +++ b/doc/html/sql-overview-table3-main-cpp.html @@ -45,7 +45,7 @@ body { background: #ffffff; color: black; } #include "main.h" #include <tqdatatable.h> -StatusPicker::StatusPicker( TQWidget *parent, const char *name ) +StatusPicker::StatusPicker( TQWidget *parent, const char *name ) : TQComboBox( parent, name ) { TQSqlCursor cur( "status" ); @@ -80,10 +80,10 @@ void StatusPicker::setStatusId( int statusid ) TQWidget *CustomSqlEditorFactory::createEditor( - TQWidget *parent, const TQSqlField *field ) + TQWidget *parent, const TQSqlField *field ) { if ( field->name() == "statusid" ) { - TQWidget *editor = new StatusPicker( parent ); + TQWidget *editor = new StatusPicker( parent ); return editor; } @@ -116,7 +116,7 @@ int main( int argc, char *argv[] ) staffTable->setSort( order ); staffTable->refresh(); - staffTable->show(); + staffTable->show(); return app.exec(); } -- cgit v1.2.3