diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:47:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-16 10:42:27 +0900 |
commit | 79c5c7cb2df1cd9a52da70ab547ca59fadab941c (patch) | |
tree | 2c086fb62392b9844c24e70069569f1484444735 /lib/koproperty | |
parent | 2f34ce33a36a8779e4c78c877ea3ece68dca63e5 (diff) | |
download | koffice-79c5c7cb2df1cd9a52da70ab547ca59fadab941c.tar.gz koffice-79c5c7cb2df1cd9a52da70ab547ca59fadab941c.zip |
Replace QT_STATIC_CONST_* with actual definitions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 04d9ceaa0e20cc22f1cdc55bd691cd6cd391457a)
Diffstat (limited to 'lib/koproperty')
-rw-r--r-- | lib/koproperty/property.cpp | 2 | ||||
-rw-r--r-- | lib/koproperty/property.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/koproperty/property.cpp b/lib/koproperty/property.cpp index d90795ca..2e6b41ea 100644 --- a/lib/koproperty/property.cpp +++ b/lib/koproperty/property.cpp @@ -33,7 +33,7 @@ namespace KoProperty { -QT_STATIC_CONST_IMPL Property Property::null; +const Property Property::null; //! @internal class PropertyPrivate diff --git a/lib/koproperty/property.h b/lib/koproperty/property.h index 9938c5df..982f84a6 100644 --- a/lib/koproperty/property.h +++ b/lib/koproperty/property.h @@ -177,7 +177,7 @@ class KOPROPERTY_EXPORT Property { public: //! A contant for null property - QT_STATIC_CONST Property null; + static const Property null; typedef TQAsciiDict<Property> Dict; typedef TQAsciiDictIterator<Property> DictIterator; |