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/popup-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/popup-example.html') diff --git a/doc/html/popup-example.html b/doc/html/popup-example.html index c4ff23345..76a0fba05 100644 --- a/doc/html/popup-example.html +++ b/doc/html/popup-example.html @@ -112,7 +112,7 @@ private: #include "popup.h" #include <ntqapplication.h> -#include <ntqlayout.h> +#include <tqlayout.h> FancyPopup::FancyPopup( TQWidget* parent, const char* name ): TQLabel( parent, name, WType_Popup ){ @@ -171,12 +171,12 @@ void FancyPopup::popup( TQWidget* button2 = new TQPushButton("Fancy Popup", this); connect ( button2, TQ_SIGNAL( pressed() ), TQ_SLOT( button2Pressed() ) ); - TQBoxLayout * l = new TQHBoxLayout( this ); + TQBoxLayout * l = new TQHBoxLayout( this ); button1->setMaximumSize(button1->sizeHint()); button2->setMaximumSize(button2->sizeHint()); - l->addWidget( button1 ); - l->addWidget( button2 ); - l->activate(); + l->addWidget( button1 ); + l->addWidget( button2 ); + l->activate(); // button1->setGeometry(20,20,100,30); // button2->setGeometry(140,20,100,30); -- cgit v1.2.3