diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:49:06 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-16 10:46:31 +0900 |
| commit | 33c36fae2a0814715082a8fe59f208eeb018ed1d (patch) | |
| tree | 38b2cd06f694e03007946d28a6f31b65f661dfac /src/tools/qstring.cpp | |
| parent | 473cd1e8a525d82f49e936d76daabe3d094a8807 (diff) | |
| download | tqt-33c36fae2a0814715082a8fe59f208eeb018ed1d.tar.gz tqt-33c36fae2a0814715082a8fe59f208eeb018ed1d.zip | |
Replace QT_STATIC_CONST_* with actual definitions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1d318a47b0b45a7f916f526de60d628302cbfd4c)
Diffstat (limited to 'src/tools/qstring.cpp')
| -rw-r--r-- | src/tools/qstring.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/qstring.cpp b/src/tools/qstring.cpp index cd42ea23c..e12c2344b 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() { |
