summaryrefslogtreecommitdiffstats
path: root/examples/action
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /examples/action
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt-7552c6d7.tar.gz
tqt-7552c6d7.zip
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/action')
-rw-r--r--examples/action/application.cpp12
-rw-r--r--examples/action/application.doc8
-rw-r--r--examples/action/application.h2
-rw-r--r--examples/action/toggleaction/toggleaction.cpp6
-rw-r--r--examples/action/toggleaction/toggleaction.doc4
5 files changed, 16 insertions, 16 deletions
diff --git a/examples/action/application.cpp b/examples/action/application.cpp
index 25822a3c0..9bd995dab 100644
--- a/examples/action/application.cpp
+++ b/examples/action/application.cpp
@@ -11,14 +11,14 @@
#include <tqimage.h>
#include <ntqpixmap.h>
-#include <ntqtoolbar.h>
-#include <ntqtoolbutton.h>
-#include <ntqpopupmenu.h>
-#include <ntqmenubar.h>
+#include <tqtoolbar.h>
+#include <tqtoolbutton.h>
+#include <tqpopupmenu.h>
+#include <tqmenubar.h>
#include <tqtextedit.h>
#include <ntqfile.h>
#include <ntqfiledialog.h>
-#include <ntqstatusbar.h>
+#include <tqstatusbar.h>
#include <ntqmessagebox.h>
#include <ntqprinter.h>
#include <ntqapplication.h>
@@ -27,7 +27,7 @@
#include <ntqpainter.h>
#include <ntqpaintdevicemetrics.h>
#include <ntqwhatsthis.h>
-#include <ntqaction.h>
+#include <tqaction.h>
#include <ntqsimplerichtext.h>
#include "filesave.xpm"
diff --git a/examples/action/application.doc b/examples/action/application.doc
index f4eaaae44..8368a3d3a 100644
--- a/examples/action/application.doc
+++ b/examples/action/application.doc
@@ -1,20 +1,20 @@
/*
*/
-/*! \page qaction-application-example.html
+/*! \page tqaction-application-example.html
- \ingroup qaction-examples
+ \ingroup tqaction-examples
\title A Complete Application Window with Actions
- The QAction class provides a way of associating user input from different
+ The TQAction class provides a way of associating user input from different
user interface elements with abstract high level actions. This approach makes
it easy to customize applications for different types of users.
This example program is just like the
<a href="simple-application-example.html">application example</a>,
- but uses QAction to build the menu and the toolbar.
+ but uses TQAction to build the menu and the toolbar.
<hr>
diff --git a/examples/action/application.h b/examples/action/application.h
index b3e864ea0..0a3cf9ad1 100644
--- a/examples/action/application.h
+++ b/examples/action/application.h
@@ -10,7 +10,7 @@
#ifndef APPLICATION_H
#define APPLICATION_H
-#include <ntqmainwindow.h>
+#include <tqmainwindow.h>
class TQTextEdit;
diff --git a/examples/action/toggleaction/toggleaction.cpp b/examples/action/toggleaction/toggleaction.cpp
index 5da1a685c..79c838d63 100644
--- a/examples/action/toggleaction/toggleaction.cpp
+++ b/examples/action/toggleaction/toggleaction.cpp
@@ -1,7 +1,7 @@
#include <ntqapplication.h>
-#include <ntqmainwindow.h>
-#include <ntqtoolbar.h>
-#include <ntqaction.h>
+#include <tqmainwindow.h>
+#include <tqtoolbar.h>
+#include <tqaction.h>
#include "labelonoff.xpm"
diff --git a/examples/action/toggleaction/toggleaction.doc b/examples/action/toggleaction/toggleaction.doc
index 7924a2631..c4e4a368d 100644
--- a/examples/action/toggleaction/toggleaction.doc
+++ b/examples/action/toggleaction/toggleaction.doc
@@ -1,10 +1,10 @@
/*! \page toggleaction-example.html
- \ingroup qaction-examples
+ \ingroup tqaction-examples
\title A Tiny Example Featuring a Toggle Action
- This example program demonstrates the use of QAction
+ This example program demonstrates the use of TQAction
in its incarnation as a toggle action.
<hr>