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/table-bigtable-main-cpp.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/table-bigtable-main-cpp.html') diff --git a/doc/html/table-bigtable-main-cpp.html b/doc/html/table-bigtable-main-cpp.html index 8503de780..1c5419102 100644 --- a/doc/html/table-bigtable-main-cpp.html +++ b/doc/html/table-bigtable-main-cpp.html @@ -71,10 +71,10 @@ public: items.setAutoDelete( TRUE ); } void insertWidget( int r, int c, TQWidget *w ) { widgets.replace( indexOf( r, c ), w ); } - TQWidget *cellWidget( int r, int c ) const { return widgets.find( indexOf( r, c ) ); } + TQWidget *cellWidget( int r, int c ) const { return widgets.find( indexOf( r, c ) ); } void clearCellWidget( int r, int c ) { - TQWidget *w = widgets.take( indexOf( r, c ) ); + TQWidget *w = widgets.take( indexOf( r, c ) ); if ( w ) w->deleteLater(); } @@ -93,7 +93,7 @@ int main( int argc, char **argv ) MyTable table( numRows, numCols ); app.setMainWidget( &table ); - table.show(); + table.show(); return app.exec(); } -- cgit v1.2.3