From 0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 25 Aug 2024 15:36:25 +0900 Subject: Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h) Signed-off-by: Michele Calgaro --- doc/html/tqaction-application-example.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/tqaction-application-example.html') diff --git a/doc/html/tqaction-application-example.html b/doc/html/tqaction-application-example.html index baab0a2f..9ccf17cf 100644 --- a/doc/html/tqaction-application-example.html +++ b/doc/html/tqaction-application-example.html @@ -67,7 +67,7 @@ public: ~ApplicationWindow(); protected: - void closeEvent( TQCloseEvent* ); + void closeEvent( TQCloseEvent* ); private slots: void newDoc(); @@ -117,7 +117,7 @@ private: #include <ntqmessagebox.h> #include <tqprinter.h> #include <ntqapplication.h> -#include <ntqaccel.h> +#include <tqaccel.h> #include <tqtextstream.h> #include <tqpainter.h> #include <tqpaintdevicemetrics.h> @@ -360,10 +360,10 @@ void ApplicationWindow::print() } } -void ApplicationWindow::closeEvent( TQCloseEvent* ce ) +void ApplicationWindow::closeEvent( TQCloseEvent* ce ) { if ( !e->isModified() ) { - ce->accept(); + ce->accept(); return; } @@ -374,14 +374,14 @@ void ApplicationWindow::print() 0, 1 ) ) { case 0: save(); - ce->accept(); + ce->accept(); break; case 1: default: // just for sanity - ce->ignore(); + ce->ignore(); break; case 2: - ce->accept(); + ce->accept(); break; } } -- cgit v1.2.1