diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-31 19:56:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-31 19:56:49 +0900 |
commit | 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (patch) | |
tree | c38058d08754b389bd058a6d63f75086b49a22b1 /src/kernel | |
parent | e42ec295c2134770a1eb07032f5f22ca4ba1daa6 (diff) | |
download | tqt3-39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1.tar.gz tqt3-39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1.zip |
Rename remaining ntq[i-l]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/ntqnamespace.h | 2 | ||||
-rw-r--r-- | src/kernel/ntqt.h | 10 | ||||
-rw-r--r-- | src/kernel/qapplication.cpp | 2 | ||||
-rw-r--r-- | src/kernel/qapplication_x11.cpp | 2 | ||||
-rw-r--r-- | src/kernel/qscriptengine_x11.cpp | 2 | ||||
-rw-r--r-- | src/kernel/qt_gfx.pri | 4 | ||||
-rw-r--r-- | src/kernel/qt_kernel.pri | 16 | ||||
-rw-r--r-- | src/kernel/qvariant.cpp | 2 | ||||
-rw-r--r-- | src/kernel/tqaccel.h | 2 | ||||
-rw-r--r-- | src/kernel/tqimage.cpp | 2 | ||||
-rw-r--r-- | src/kernel/tqinputcontext.cpp (renamed from src/kernel/qinputcontext.cpp) | 6 | ||||
-rw-r--r-- | src/kernel/tqinputcontext.h (renamed from src/kernel/ntqinputcontext.h) | 2 | ||||
-rw-r--r-- | src/kernel/tqinputcontext_p.h (renamed from src/kernel/qinputcontext_p.h) | 0 | ||||
-rw-r--r-- | src/kernel/tqinputcontext_x11.cpp (renamed from src/kernel/qinputcontext_x11.cpp) | 2 | ||||
-rw-r--r-- | src/kernel/tqjpegio.cpp (renamed from src/kernel/qjpegio.cpp) | 2 | ||||
-rw-r--r-- | src/kernel/tqjpegio.h (renamed from src/kernel/ntqjpegio.h) | 0 | ||||
-rw-r--r-- | src/kernel/tqkeycode.h (renamed from src/kernel/ntqkeycode.h) | 0 | ||||
-rw-r--r-- | src/kernel/tqkeysequence.cpp (renamed from src/kernel/qkeysequence.cpp) | 4 | ||||
-rw-r--r-- | src/kernel/tqkeysequence.h (renamed from src/kernel/ntqkeysequence.h) | 0 | ||||
-rw-r--r-- | src/kernel/tqttdeintegration_x11.cpp | 2 | ||||
-rw-r--r-- | src/kernel/tqwidget.cpp | 2 | ||||
-rw-r--r-- | src/kernel/tqwidget_x11.cpp | 4 |
22 files changed, 34 insertions, 34 deletions
diff --git a/src/kernel/ntqnamespace.h b/src/kernel/ntqnamespace.h index c6bdd1b0d..f5ec7dd1d 100644 --- a/src/kernel/ntqnamespace.h +++ b/src/kernel/ntqnamespace.h @@ -335,7 +335,7 @@ public: }; #endif - // documented in qkeysequence.cpp + // documented in tqkeysequence.cpp enum SequenceMatch { NoMatch, PartialMatch, diff --git a/src/kernel/ntqt.h b/src/kernel/ntqt.h index e04574828..0a1ffc22b 100644 --- a/src/kernel/ntqt.h +++ b/src/kernel/ntqt.h @@ -28,7 +28,7 @@ #include "tqstring.h" #include "tqptrlist.h" #include "tqiodevice.h" -#include "ntqkeysequence.h" +#include "tqkeysequence.h" #include "ntqwindowdefs.h" #include "tqgdict.h" #include "tqfont.h" @@ -114,13 +114,13 @@ #include "tqpicture.h" #include <tqjiscodec.h> #include <tqeucjpcodec.h> -#include <ntqkeycode.h> +#include <tqkeycode.h> #include <tqaccel.h> #include "tqlabel.h" #include "tqlayout.h" #include <tqlcdnumber.h> -#include <ntqlibrary.h> -#include <ntqinputdialog.h> +#include <tqlibrary.h> +#include <tqinputdialog.h> #include "tqscrollbar.h" #include "tqscrollview.h" #include "tqdir.h" @@ -302,7 +302,7 @@ #include "private/tqdialogbuttons_p.h" #include "private/tqwidgetinterface_p.h" #include "private/tqwidgetresizehandler_p.h" -#include "private/qlibrary_p.h" +#include "private/tqlibrary_p.h" #endif // Private headers diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp index a4fded7f0..8f04514cf 100644 --- a/src/kernel/qapplication.cpp +++ b/src/kernel/qapplication.cpp @@ -61,7 +61,7 @@ #include "tqdir.h" #include "tqfileinfo.h" #ifdef TQ_WS_WIN -#include "qinputcontext_p.h" +#include "tqinputcontext_p.h" #endif #include "tqfontdata_p.h" diff --git a/src/kernel/qapplication_x11.cpp b/src/kernel/qapplication_x11.cpp index b611778d7..c1d8345b1 100644 --- a/src/kernel/qapplication_x11.cpp +++ b/src/kernel/qapplication_x11.cpp @@ -90,7 +90,7 @@ // Input method stuff - UNFINISHED #ifndef TQT_NO_IM -#include "ntqinputcontext.h" +#include "tqinputcontext.h" #endif // TQT_NO_IM #include "qinternal_p.h" // shared double buffer cleanup diff --git a/src/kernel/qscriptengine_x11.cpp b/src/kernel/qscriptengine_x11.cpp index 6c1190fb3..5d22fdf49 100644 --- a/src/kernel/qscriptengine_x11.cpp +++ b/src/kernel/qscriptengine_x11.cpp @@ -1900,7 +1900,7 @@ static void indic_attributes(int script, const TQString &text, int from, int len // -------------------------------------------------------------------------------------------------------------------------------------------- #include <tqtextcodec.h> -#include <ntqlibrary.h> +#include <tqlibrary.h> static void thaiWordBreaks(const TQChar *string, const int len, TQCharAttributes *attributes) diff --git a/src/kernel/qt_gfx.pri b/src/kernel/qt_gfx.pri index c66f3141e..fadd1277f 100644 --- a/src/kernel/qt_gfx.pri +++ b/src/kernel/qt_gfx.pri @@ -39,8 +39,8 @@ mng { else:DEFINES += TQT_NO_IMAGEIO_MNG #jpeg support.. -HEADERS += $$KERNEL_H/ntqjpegio.h -SOURCES += $$KERNEL_CPP/qjpegio.cpp +HEADERS += $$KERNEL_H/tqjpegio.h +SOURCES += $$KERNEL_CPP/tqjpegio.cpp jpeg { system-jpeg { unix:LIBS += -ljpeg diff --git a/src/kernel/qt_kernel.pri b/src/kernel/qt_kernel.pri index d52783f7c..03904d262 100644 --- a/src/kernel/qt_kernel.pri +++ b/src/kernel/qt_kernel.pri @@ -35,8 +35,8 @@ kernel { $$KERNEL_H/tqimage.h \ $$KERNEL_P/tqimageformatinterface_p.h \ $$KERNEL_H/tqimageformatplugin.h \ - $$KERNEL_H/ntqkeycode.h \ - $$KERNEL_H/ntqkeysequence.h \ + $$KERNEL_H/tqkeycode.h \ + $$KERNEL_H/tqkeysequence.h \ $$KERNEL_H/tqlayout.h \ $$KERNEL_P/tqlayoutengine_p.h \ $$KERNEL_H/tqtranslator.h \ @@ -100,9 +100,9 @@ kernel { inputmethod { unix:x11 { - HEADERS += $$KERNEL_H/ntqinputcontext.h + HEADERS += $$KERNEL_H/tqinputcontext.h } else { - HEADERS += $$KERNEL_P/qinputcontext_p.h + HEADERS += $$KERNEL_P/tqinputcontext_p.h } } @@ -118,7 +118,7 @@ kernel { $$KERNEL_CPP/qdnd_win.cpp \ $$KERNEL_CPP/tqeventloop_win.cpp \ $$KERNEL_CPP/tqfont_win.cpp \ - $$KERNEL_CPP/qinputcontext_win.cpp \ + $$KERNEL_CPP/tqinputcontext_win.cpp \ $$KERNEL_CPP/tqmime_win.cpp \ $$KERNEL_CPP/tqpixmap_win.cpp \ $$KERNEL_CPP/tqprinter_win.cpp \ @@ -140,8 +140,8 @@ kernel { $$KERNEL_CPP/qdnd_x11.cpp \ $$KERNEL_CPP/tqdesktopwidget_x11.cpp \ $$KERNEL_CPP/tqfont_x11.cpp \ - $$KERNEL_CPP/qinputcontext.cpp \ - $$KERNEL_CPP/qinputcontext_x11.cpp \ + $$KERNEL_CPP/tqinputcontext.cpp \ + $$KERNEL_CPP/tqinputcontext_x11.cpp \ $$KERNEL_CPP/tqmotifdnd_x11.cpp \ $$KERNEL_CPP/tqpixmap_x11.cpp \ $$KERNEL_CPP/tqpaintdevice_x11.cpp \ @@ -217,7 +217,7 @@ kernel { $$KERNEL_CPP/tqiconset.cpp \ $$KERNEL_CPP/tqimage.cpp \ $$KERNEL_CPP/tqimageformatplugin.cpp \ - $$KERNEL_CPP/qkeysequence.cpp \ + $$KERNEL_CPP/tqkeysequence.cpp \ $$KERNEL_CPP/tqlayout.cpp \ $$KERNEL_CPP/tqlayoutengine.cpp \ $$KERNEL_CPP/tqtranslator.cpp \ diff --git a/src/kernel/qvariant.cpp b/src/kernel/qvariant.cpp index ac94aea12..8f5768696 100644 --- a/src/kernel/qvariant.cpp +++ b/src/kernel/qvariant.cpp @@ -63,7 +63,7 @@ #include "tqsizepolicy.h" #include "ntqshared.h" #include "tqbitarray.h" -#include "ntqkeysequence.h" +#include "tqkeysequence.h" #include "tqpen.h" #ifndef DBL_DIG diff --git a/src/kernel/tqaccel.h b/src/kernel/tqaccel.h index 22c2f80e1..c883ba2ff 100644 --- a/src/kernel/tqaccel.h +++ b/src/kernel/tqaccel.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "tqobject.h" -#include "ntqkeysequence.h" +#include "tqkeysequence.h" #endif // QT_H #ifndef TQT_NO_ACCEL diff --git a/src/kernel/tqimage.cpp b/src/kernel/tqimage.cpp index 6c1d1ffad..b71804321 100644 --- a/src/kernel/tqimage.cpp +++ b/src/kernel/tqimage.cpp @@ -48,7 +48,7 @@ #include "tqasyncimageio.h" #include "tqpngio.h" #include "ntqmngio.h" -#include "ntqjpegio.h" +#include "tqjpegio.h" #include "tqmap.h" #include <private/qpluginmanager_p.h> #include "tqimageformatinterface_p.h" diff --git a/src/kernel/qinputcontext.cpp b/src/kernel/tqinputcontext.cpp index 8693da969..7d15aa0c7 100644 --- a/src/kernel/qinputcontext.cpp +++ b/src/kernel/tqinputcontext.cpp @@ -1,5 +1,5 @@ /**************************************************************************** -** $Id: qinputcontext.cpp,v 1.6 2004/06/22 06:47:30 daisuke Exp $ +** $Id: tqinputcontext.cpp,v 1.6 2004/06/22 06:47:30 daisuke Exp $ ** ** Implementation of TQInputContext class ** @@ -35,7 +35,7 @@ //#define TQT_NO_IM_PREEDIT_RELOCATION -#include "ntqinputcontext.h" +#include "tqinputcontext.h" #ifndef TQT_NO_IM @@ -93,7 +93,7 @@ public: // UPDATED COMMENT REQUIRED -- 2004-07-08 YamaKen /*! - \class TQInputContext ntqinputcontext.h + \class TQInputContext tqinputcontext.h \brief The TQInputContext class abstracts the input method dependent data and composing state. \ingroup i18n diff --git a/src/kernel/ntqinputcontext.h b/src/kernel/tqinputcontext.h index 426aa796a..06f72f206 100644 --- a/src/kernel/ntqinputcontext.h +++ b/src/kernel/tqinputcontext.h @@ -1,5 +1,5 @@ /**************************************************************************** -** $Id: ntqinputcontext.h,v 1.8 2004/06/22 06:47:30 daisuke Exp $ +** $Id: tqinputcontext.h,v 1.8 2004/06/22 06:47:30 daisuke Exp $ ** ** Definition of TQInputContext ** diff --git a/src/kernel/qinputcontext_p.h b/src/kernel/tqinputcontext_p.h index 37ba52b6c..37ba52b6c 100644 --- a/src/kernel/qinputcontext_p.h +++ b/src/kernel/tqinputcontext_p.h diff --git a/src/kernel/qinputcontext_x11.cpp b/src/kernel/tqinputcontext_x11.cpp index 0a314dfbb..d0f8699b3 100644 --- a/src/kernel/qinputcontext_x11.cpp +++ b/src/kernel/tqinputcontext_x11.cpp @@ -36,7 +36,7 @@ ** **********************************************************************/ -#include "ntqinputcontext.h" +#include "tqinputcontext.h" #ifndef TQT_NO_IM diff --git a/src/kernel/qjpegio.cpp b/src/kernel/tqjpegio.cpp index 56b22fbbf..f76aad44d 100644 --- a/src/kernel/qjpegio.cpp +++ b/src/kernel/tqjpegio.cpp @@ -43,7 +43,7 @@ #ifndef TQT_NO_IMAGEIO_JPEG #include "tqiodevice.h" -#include "ntqjpegio.h" +#include "tqjpegio.h" #include <stdio.h> // jpeglib needs this to be pre-included #include <setjmp.h> diff --git a/src/kernel/ntqjpegio.h b/src/kernel/tqjpegio.h index 10ae8d7cf..10ae8d7cf 100644 --- a/src/kernel/ntqjpegio.h +++ b/src/kernel/tqjpegio.h diff --git a/src/kernel/ntqkeycode.h b/src/kernel/tqkeycode.h index bca9305ba..bca9305ba 100644 --- a/src/kernel/ntqkeycode.h +++ b/src/kernel/tqkeycode.h diff --git a/src/kernel/qkeysequence.cpp b/src/kernel/tqkeysequence.cpp index 8fd7485b8..94ba5cf53 100644 --- a/src/kernel/qkeysequence.cpp +++ b/src/kernel/tqkeysequence.cpp @@ -38,7 +38,7 @@ ** **********************************************************************/ -#include "ntqkeysequence.h" +#include "tqkeysequence.h" #ifndef TQT_NO_ACCEL @@ -57,7 +57,7 @@ #endif /*! - \class TQKeySequence ntqkeysequence.h + \class TQKeySequence tqkeysequence.h \brief The TQKeySequence class encapsulates a key sequence as used by accelerators. diff --git a/src/kernel/ntqkeysequence.h b/src/kernel/tqkeysequence.h index e4800839d..e4800839d 100644 --- a/src/kernel/ntqkeysequence.h +++ b/src/kernel/tqkeysequence.h diff --git a/src/kernel/tqttdeintegration_x11.cpp b/src/kernel/tqttdeintegration_x11.cpp index 6bd89a390..0b8e794c2 100644 --- a/src/kernel/tqttdeintegration_x11.cpp +++ b/src/kernel/tqttdeintegration_x11.cpp @@ -6,7 +6,7 @@ #include <tqcolordialog.h> #include <tqfiledialog.h> #include <tqfontdialog.h> -#include <ntqlibrary.h> +#include <tqlibrary.h> #include <tqregexp.h> #include <ntqmessagebox.h> #include <stdlib.h> diff --git a/src/kernel/tqwidget.cpp b/src/kernel/tqwidget.cpp index d0e37df41..4aa4a09ed 100644 --- a/src/kernel/tqwidget.cpp +++ b/src/kernel/tqwidget.cpp @@ -64,7 +64,7 @@ #endif #if defined(TQ_WS_WIN) #include "qt_windows.h" -#include "qinputcontext_p.h" +#include "tqinputcontext_p.h" #endif #include "tqfontdata_p.h" diff --git a/src/kernel/tqwidget_x11.cpp b/src/kernel/tqwidget_x11.cpp index bccd0110b..b7136818f 100644 --- a/src/kernel/tqwidget_x11.cpp +++ b/src/kernel/tqwidget_x11.cpp @@ -66,8 +66,8 @@ bool qt_wstate_iconified( WId ); void qt_updated_rootinfo(); #ifndef TQT_NO_IM -#include "ntqinputcontext.h" -#include "ntqinputcontextfactory.h" +#include "tqinputcontext.h" +#include "tqinputcontextfactory.h" #endif // Paint event clipping magic |