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/process-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/process-example.html') diff --git a/doc/html/process-example.html b/doc/html/process-example.html index 1829895dd..1eef600d3 100644 --- a/doc/html/process-example.html +++ b/doc/html/process-example.html @@ -53,7 +53,7 @@ output of the command. #include <tqprocess.h> #include <ntqvbox.h> #include <tqtextview.h> -#include <ntqpushbutton.h> +#include <tqpushbutton.h> #include <ntqapplication.h> #include <ntqmessagebox.h> @@ -74,14 +74,14 @@ public slots: private: TQProcess *proc; TQTextView *output; - TQPushButton *quitButton; + TQPushButton *quitButton; }; UicManager::UicManager() { // Layout output = new TQTextView( this ); - quitButton = new TQPushButton( tr("Quit"), this ); + quitButton = new TQPushButton( tr("Quit"), this ); connect( quitButton, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); resize( 500, 500 ); @@ -121,7 +121,7 @@ void UicManager::readFromStdout() void UicManager::scrollToTop() { - output->setContentsPos( 0, 0 ); + output->setContentsPos( 0, 0 ); } int main( int argc, char **argv ) -- cgit v1.2.3