From 82ecd83484c9fa1ede059986ab771e74e33e68ef Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 16 Aug 2024 19:11:00 +0900 Subject: Rename layout nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/chart-setdataform-cpp.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 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 be4e67b53..3e624ae80 100644 --- a/doc/html/chart-setdataform-cpp.html +++ b/doc/html/chart-setdataform-cpp.html @@ -37,7 +37,7 @@ body { background: #ffffff; color: black; } #include <tqcolordialog.h> #include <tqcombobox.h> -#include <ntqlayout.h> +#include <tqlayout.h> #include <tqpixmap.h> #include <tqpushbutton.h> #include <tqtable.h> @@ -72,7 +72,7 @@ const int MAX_PATTERNS = 14; setCaption( "Chart -- Set Data" ); resize( 540, 440 ); - tableButtonBox = new TQVBoxLayout( this, 11, 6, "table button box layout" ); + tableButtonBox = new TQVBoxLayout( this, 11, 6, "table button box layout" ); table = new TQTable( this, "data table" ); table->setNumCols( 5 ); @@ -91,30 +91,30 @@ const int MAX_PATTERNS = 14; th->setLabel( 2, "Pattern" ); th->setLabel( 3, "Label" ); th->setLabel( 4, "Color" ); - tableButtonBox->addWidget( table ); + tableButtonBox->addWidget( table ); - buttonBox = new TQHBoxLayout( 0, 0, 6, "button box layout" ); + buttonBox = new TQHBoxLayout( 0, 0, 6, "button box layout" ); colorPushButton = new TQPushButton( this, "color button" ); colorPushButton->setText( "&Color..." ); colorPushButton->setEnabled( FALSE ); - buttonBox->addWidget( colorPushButton ); + buttonBox->addWidget( colorPushButton ); - TQSpacerItem *spacer = new TQSpacerItem( 0, 0, TQSizePolicy::Expanding, + TQSpacerItem *spacer = new TQSpacerItem( 0, 0, TQSizePolicy::Expanding, TQSizePolicy::Minimum ); - buttonBox->addItem( spacer ); + buttonBox->addItem( spacer ); okPushButton = new TQPushButton( this, "ok button" ); okPushButton->setText( "OK" ); okPushButton->setDefault( TRUE ); - buttonBox->addWidget( okPushButton ); + buttonBox->addWidget( okPushButton ); cancelPushButton = new TQPushButton( this, "cancel button" ); cancelPushButton->setText( "Cancel" ); cancelPushButton->setAccel( Key_Escape ); - buttonBox->addWidget( cancelPushButton ); + buttonBox->addWidget( cancelPushButton ); - tableButtonBox->addLayout( buttonBox ); + tableButtonBox->addLayout( buttonBox ); connect( table, TQ_SIGNAL( clicked(int,int,int,const TQPoint&) ), this, TQ_SLOT( setColor(int,int) ) ); -- cgit v1.2.3