summaryrefslogtreecommitdiffstats
path: root/src/tools/qfile.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-06 12:45:31 +0900
committerMichele Calgaro <[email protected]>2023-09-07 16:28:40 +0900
commit440483234fd5d8f29517d9c84b4227db80a90361 (patch)
treee7c53fdaebe221c11ef73428c02cd4fcb23e740e /src/tools/qfile.cpp
parent0c8091f80e1c2bd853e8850f2e6300c055471382 (diff)
downloadtqt3-440483234fd5d8f29517d9c84b4227db80a90361.tar.gz
tqt3-440483234fd5d8f29517d9c84b4227db80a90361.zip
Replace various Q_* and QT_* defines with TQ_* and TQT_*
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 926102a455014e6ab308aaced19e32eed7ed4414)
Diffstat (limited to 'src/tools/qfile.cpp')
-rw-r--r--src/tools/qfile.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/qfile.cpp b/src/tools/qfile.cpp
index 47f77b5e3..cf9b1a5c7 100644
--- a/src/tools/qfile.cpp
+++ b/src/tools/qfile.cpp
@@ -58,16 +58,16 @@
// Duplicated from ntqobject.h, but we cannot include ntqobject.h here since
// it causes qmake to not build on irix g++
-#define QT_TRANSLATE_NOOP(scope,x) (x)
+#define TQT_TRANSLATE_NOOP(scope,x) (x)
-const char* qt_fileerr_unknown = QT_TRANSLATE_NOOP( "TQFile", "Unknown error" );
-const char* qt_fileerr_read = QT_TRANSLATE_NOOP( "TQFile", "Could not read from the file" );
-const char* qt_fileerr_write = QT_TRANSLATE_NOOP( "TQFile", "Could not write to the file" );
+const char* qt_fileerr_unknown = TQT_TRANSLATE_NOOP( "TQFile", "Unknown error" );
+const char* qt_fileerr_read = TQT_TRANSLATE_NOOP( "TQFile", "Could not read from the file" );
+const char* qt_fileerr_write = TQT_TRANSLATE_NOOP( "TQFile", "Could not write to the file" );
-#define TQFILEERR_EACCES QT_TRANSLATE_NOOP( "TQFile", "Permission denied" )
-#define TQFILEERR_EMFILE QT_TRANSLATE_NOOP( "TQFile", "Too many open files" )
-#define TQFILEERR_ENOENT QT_TRANSLATE_NOOP( "TQFile", "No such file or directory" )
-#define TQFILEERR_ENOSPC QT_TRANSLATE_NOOP( "TQFile", "No space left on device" )
+#define TQFILEERR_EACCES TQT_TRANSLATE_NOOP( "TQFile", "Permission denied" )
+#define TQFILEERR_EMFILE TQT_TRANSLATE_NOOP( "TQFile", "Too many open files" )
+#define TQFILEERR_ENOENT TQT_TRANSLATE_NOOP( "TQFile", "No such file or directory" )
+#define TQFILEERR_ENOSPC TQT_TRANSLATE_NOOP( "TQFile", "No space left on device" )
class TQFilePrivate
{