From 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 8 Jun 2024 12:56:43 +0900 Subject: Rename text 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 719651b89..9629f2950 100644 --- a/doc/html/process-example.html +++ b/doc/html/process-example.html @@ -52,7 +52,7 @@ output of the command. #include <tqobject.h> #include <ntqprocess.h> #include <ntqvbox.h> -#include <ntqtextview.h> +#include <tqtextview.h> #include <ntqpushbutton.h> #include <ntqapplication.h> #include <ntqmessagebox.h> @@ -73,14 +73,14 @@ public slots: private: TQProcess *proc; - TQTextView *output; + TQTextView *output; TQPushButton *quitButton; }; UicManager::UicManager() { // Layout - output = new TQTextView( this ); + output = new TQTextView( this ); quitButton = new TQPushButton( tr("Quit"), this ); connect( quitButton, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); @@ -116,7 +116,7 @@ void UicManager::readFromStdout() { // Read and process the data. // Bear in mind that the data might be output in chunks. - output->append( proc->readStdout() ); + output->append( proc->readStdout() ); } void UicManager::scrollToTop() -- cgit v1.2.3