From fef846914f8db6dc117e206ef913d519bf6bb33e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 29 Jul 2024 12:43:23 +0900 Subject: Rename basic widget nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/statistics-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/statistics-example.html') diff --git a/doc/html/statistics-example.html b/doc/html/statistics-example.html index 92b04e059..3a032d538 100644 --- a/doc/html/statistics-example.html +++ b/doc/html/statistics-example.html @@ -50,7 +50,7 @@ Another TQTable example. #define STATISTICS_H #include <ntqtable.h> -#include <ntqcombobox.h> +#include <tqcombobox.h> class TableItem : public TQTableItem { @@ -68,7 +68,7 @@ public: void setText( const TQString &s ); private: - TQComboBox *cb; + TQComboBox *cb; }; @@ -108,7 +108,7 @@ private: #include <tqdir.h> #include <tqstringlist.h> #include <ntqheader.h> -#include <ntqcombobox.h> +#include <tqcombobox.h> #include <stdlib.h> const char* dirs[] = { @@ -235,7 +235,7 @@ void Table::recalcSum( int, int col ) TQWidget *ComboItem::createEditor() const { // create an editor - a combobox in our case - ( (ComboItem*)this )->cb = new TQComboBox( table()->viewport() ); + ( (ComboItem*)this )->cb = new TQComboBox( table()->viewport() ); TQObject::connect( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) ); cb->insertItem( "Yes" ); cb->insertItem( "No" ); -- cgit v1.2.3