From 397b7afa8e3f32268c4454bf4783ac2a5a799658 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Oct 2024 13:05:33 +0900 Subject: Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/toggleaction-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/toggleaction-example.html') diff --git a/doc/html/toggleaction-example.html b/doc/html/toggleaction-example.html index 3c1a5ce00..38c0e93a1 100644 --- a/doc/html/toggleaction-example.html +++ b/doc/html/toggleaction-example.html @@ -36,7 +36,7 @@ body { background: #ffffff; color: black; } in its incarnation as a toggle action.


Main: -

#include <ntqapplication.h>
+

#include <tqapplication.h>
 #include <tqmainwindow.h>
 #include <tqtoolbar.h>
 #include <tqaction.h>
@@ -45,7 +45,7 @@ in its incarnation as a toggle action.
 
 int main( int argc, char **argv )
 {
-    TQApplication app( argc, argv );
+    TQApplication app( argc, argv );
     TQMainWindow * window = new TQMainWindow;
     window->setCaption("TQt Example - Toggleaction");
     TQToolBar * toolbar = new TQToolBar( window );
@@ -62,9 +62,9 @@ int main( int argc, char **argv )
 
     labelonoffaction->addTo( toolbar );
 
-    app.setMainWidget( window );
+    app.setMainWidget( window );
     window->show();
-    return app.exec();
+    return app.exec();
 }
 
 
-- cgit v1.2.3