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/progressbar-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/progressbar-example.html') diff --git a/doc/html/progressbar-example.html b/doc/html/progressbar-example.html index 54a1e21ff..5b40c64ff 100644 --- a/doc/html/progressbar-example.html +++ b/doc/html/progressbar-example.html @@ -96,7 +96,7 @@ protected slots: #include <tqradiobutton.h> #include <tqpushbutton.h> #include <tqprogressbar.h> -#include <ntqlayout.h> +#include <tqlayout.h> #include <ntqmotifstyle.h> @@ -121,19 +121,19 @@ protected slots: slow = new TQRadioButton( "S&low", this ); normal = new TQRadioButton( "&Normal", this ); fast = new TQRadioButton( "&Fast", this ); - TQVBoxLayout* vb1 = new TQVBoxLayout; + TQVBoxLayout* vb1 = new TQVBoxLayout; toplayout->addLayout( vb1, 0, 0 ); - vb1->addWidget( slow ); - vb1->addWidget( normal ); - vb1->addWidget( fast ); + vb1->addWidget( slow ); + vb1->addWidget( normal ); + vb1->addWidget( fast ); // two push buttons, one for start, for for reset. start = new TQPushButton( "&Start", this ); reset = new TQPushButton( "&Reset", this ); - TQVBoxLayout* vb2 = new TQVBoxLayout; + TQVBoxLayout* vb2 = new TQVBoxLayout; toplayout->addLayout( vb2, 0, 1 ); - vb2->addWidget( start ); - vb2->addWidget( reset ); + vb2->addWidget( start ); + vb2->addWidget( reset ); // Create the progressbar progress = new TQProgressBar( 100, this ); -- cgit v1.2.3