summaryrefslogtreecommitdiffstats
path: root/src/tools/qstring.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-15 18:49:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-15 18:58:23 +0900
commit1d318a47b0b45a7f916f526de60d628302cbfd4c (patch)
tree40e178533acb193432ab512d05eb3f03ff4a855c /src/tools/qstring.cpp
parent67bff2edcacb208dc44dcd521386bef686dc6dbf (diff)
downloadtqt3-1d318a47b0b45a7f916f526de60d628302cbfd4c.tar.gz
tqt3-1d318a47b0b45a7f916f526de60d628302cbfd4c.zip
Replace QT_STATIC_CONST_* with actual definitions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tools/qstring.cpp')
-rw-r--r--src/tools/qstring.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/qstring.cpp b/src/tools/qstring.cpp
index 938ff313..26e9b61c 100644
--- a/src/tools/qstring.cpp
+++ b/src/tools/qstring.cpp
@@ -1457,12 +1457,12 @@ char* TQString::unicodeToLatin1(const TQChar *uc, uint l, bool unpaged)
*/
TQ_EXPORT TQStringData *TQString::shared_null = 0;
-QT_STATIC_CONST_IMPL TQString TQString::null;
-QT_STATIC_CONST_IMPL TQChar TQChar::null;
-QT_STATIC_CONST_IMPL TQChar TQChar::replacement((ushort)0xfffd);
-QT_STATIC_CONST_IMPL TQChar TQChar::byteOrderMark((ushort)0xfeff);
-QT_STATIC_CONST_IMPL TQChar TQChar::byteOrderSwapped((ushort)0xfffe);
-QT_STATIC_CONST_IMPL TQChar TQChar::nbsp((ushort)0x00a0);
+const TQString TQString::null;
+const TQChar TQChar::null;
+const TQChar TQChar::replacement((ushort)0xfffd);
+const TQChar TQChar::byteOrderMark((ushort)0xfeff);
+const TQChar TQChar::byteOrderSwapped((ushort)0xfffe);
+const TQChar TQChar::nbsp((ushort)0x00a0);
TQStringData* TQString::makeSharedNull()
{