diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-02 21:37:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-06 11:24:55 +0900 |
commit | 7552c6d73043b1040139033f6864db48ae5446cf (patch) | |
tree | f90d24d072dd3ee6a3f909bf7778abc7669f03ef /tools/linguist | |
parent | c113da2069b66130f67a0f27c699e1cec83588a5 (diff) | |
download | tqt3-7552c6d73043b1040139033f6864db48ae5446cf.tar.gz tqt3-7552c6d73043b1040139033f6864db48ae5446cf.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 'tools/linguist')
-rw-r--r-- | tools/linguist/book/linguist-programmer.leaf | 6 | ||||
-rw-r--r-- | tools/linguist/linguist/msgedit.cpp | 2 | ||||
-rw-r--r-- | tools/linguist/linguist/msgedit.h | 2 | ||||
-rw-r--r-- | tools/linguist/linguist/trwindow.cpp | 10 | ||||
-rw-r--r-- | tools/linguist/linguist/trwindow.h | 2 | ||||
-rw-r--r-- | tools/linguist/tutorial/tt2/mainwindow.cpp | 4 | ||||
-rw-r--r-- | tools/linguist/tutorial/tt2/mainwindow.h | 2 | ||||
-rw-r--r-- | tools/linguist/tutorial/tt3/mainwindow.cpp | 4 | ||||
-rw-r--r-- | tools/linguist/tutorial/tt3/mainwindow.h | 2 |
9 files changed, 17 insertions, 17 deletions
diff --git a/tools/linguist/book/linguist-programmer.leaf b/tools/linguist/book/linguist-programmer.leaf index eff9422cb..95e9be5fc 100644 --- a/tools/linguist/book/linguist-programmer.leaf +++ b/tools/linguist/book/linguist-programmer.leaf @@ -542,7 +542,7 @@ This example is a slightly more involved and introduces a key \i \c arrowpad.h contains the definition of \c ArrowPad, a custom widget; \i \c arrowpad.cpp contains the implementation of \c ArrowPad; \i \c mainwindow.h contains the definition of \c MainWindow, a subclass of - \l QMainWindow + \l TQMainWindow \i \c mainwindow.cpp contains the implementation of \c MainWindow; \i \c main.cpp contains main(). \endlist @@ -627,8 +627,8 @@ user-visible text. \index MainWindow!in Translation Tutorial \quotefile tt2/mainwindow.h -\skipto QMainWindow -\printline QMainWindow +\skipto TQMainWindow +\printline TQMainWindow \printuntil TQ_OBJECT In the \e {Tutorial 2 Screenshot, English version}, above, the whole diff --git a/tools/linguist/linguist/msgedit.cpp b/tools/linguist/linguist/msgedit.cpp index d68dfa09b..cd12369f7 100644 --- a/tools/linguist/linguist/msgedit.cpp +++ b/tools/linguist/linguist/msgedit.cpp @@ -54,7 +54,7 @@ #include <tqtextview.h> #include <ntqwhatsthis.h> #include <ntqvbox.h> -#include <ntqmainwindow.h> +#include <tqmainwindow.h> #include <ntqheader.h> #include <ntqregexp.h> #include <ntqdockarea.h> diff --git a/tools/linguist/linguist/msgedit.h b/tools/linguist/linguist/msgedit.h index b1d29bc9c..a64440efa 100644 --- a/tools/linguist/linguist/msgedit.h +++ b/tools/linguist/linguist/msgedit.h @@ -46,7 +46,7 @@ #include <ntqscrollview.h> #include <ntqpixmap.h> #include <ntqbitmap.h> -#include <ntqtooltip.h> +#include <tqtooltip.h> class TQAccel; class TQDockArea; diff --git a/tools/linguist/linguist/trwindow.cpp b/tools/linguist/linguist/trwindow.cpp index 7b3ce9880..8ff22afe7 100644 --- a/tools/linguist/linguist/trwindow.cpp +++ b/tools/linguist/linguist/trwindow.cpp @@ -47,7 +47,7 @@ #include "statistics.h" #include <ntqaccel.h> -#include <ntqaction.h> +#include <tqaction.h> #include <ntqapplication.h> #include <ntqbitmap.h> #include <ntqdict.h> @@ -59,13 +59,13 @@ #include <ntqheader.h> #include <ntqlabel.h> #include <ntqlayout.h> -#include <ntqmenubar.h> +#include <tqmenubar.h> #include <ntqmessagebox.h> -#include <ntqpopupmenu.h> +#include <tqpopupmenu.h> #include <ntqregexp.h> #include <ntqsettings.h> -#include <ntqstatusbar.h> -#include <ntqtoolbar.h> +#include <tqstatusbar.h> +#include <tqtoolbar.h> #include <ntqwhatsthis.h> #include <ntqprocess.h> #include <ntqassistantclient.h> diff --git a/tools/linguist/linguist/trwindow.h b/tools/linguist/linguist/trwindow.h index 7c81ed15a..89a4edb28 100644 --- a/tools/linguist/linguist/trwindow.h +++ b/tools/linguist/linguist/trwindow.h @@ -38,7 +38,7 @@ #include <metatranslator.h> -#include <ntqmainwindow.h> +#include <tqmainwindow.h> #include <tqptrlist.h> #include <ntqdict.h> #include <ntqprinter.h> diff --git a/tools/linguist/tutorial/tt2/mainwindow.cpp b/tools/linguist/tutorial/tt2/mainwindow.cpp index a2507331c..8b5c9dfb0 100644 --- a/tools/linguist/tutorial/tt2/mainwindow.cpp +++ b/tools/linguist/tutorial/tt2/mainwindow.cpp @@ -9,8 +9,8 @@ #include <ntqaccel.h> #include <ntqapplication.h> -#include <ntqmenubar.h> -#include <ntqpopupmenu.h> +#include <tqmenubar.h> +#include <tqpopupmenu.h> MainWindow::MainWindow( TQWidget *parent, const char *name ) : TQMainWindow( parent, name ) diff --git a/tools/linguist/tutorial/tt2/mainwindow.h b/tools/linguist/tutorial/tt2/mainwindow.h index 92ecf61c7..38209c619 100644 --- a/tools/linguist/tutorial/tt2/mainwindow.h +++ b/tools/linguist/tutorial/tt2/mainwindow.h @@ -7,7 +7,7 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include <ntqmainwindow.h> +#include <tqmainwindow.h> class MainWindow : public TQMainWindow { diff --git a/tools/linguist/tutorial/tt3/mainwindow.cpp b/tools/linguist/tutorial/tt3/mainwindow.cpp index 8e4bee5cd..b76430752 100644 --- a/tools/linguist/tutorial/tt3/mainwindow.cpp +++ b/tools/linguist/tutorial/tt3/mainwindow.cpp @@ -9,9 +9,9 @@ #include <ntqaccel.h> #include <ntqapplication.h> -#include <ntqmenubar.h> +#include <tqmenubar.h> #include <ntqmessagebox.h> -#include <ntqpopupmenu.h> +#include <tqpopupmenu.h> MainWindow::MainWindow( TQWidget *parent, const char *name ) : TQMainWindow( parent, name ) diff --git a/tools/linguist/tutorial/tt3/mainwindow.h b/tools/linguist/tutorial/tt3/mainwindow.h index 2007658eb..fafd15ed5 100644 --- a/tools/linguist/tutorial/tt3/mainwindow.h +++ b/tools/linguist/tutorial/tt3/mainwindow.h @@ -7,7 +7,7 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include <ntqmainwindow.h> +#include <tqmainwindow.h> class MainWindow : public TQMainWindow { |