diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:48:40 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:56:38 +0900 |
commit | 88279f93f92d90b3a1b5aef01a67c6d0ed24e9c8 (patch) | |
tree | ae92d30dea9b590ead06bfc78037fb5953849897 /lib/cppparser/errors.cpp | |
parent | 3636ecf9a45ec3bc358b6febabc447ada433c056 (diff) | |
download | tdevelop-88279f93f92d90b3a1b5aef01a67c6d0ed24e9c8.tar.gz tdevelop-88279f93f92d90b3a1b5aef01a67c6d0ed24e9c8.zip |
Replace QT_STATIC_CONST_* with actual definitions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/cppparser/errors.cpp')
-rw-r--r-- | lib/cppparser/errors.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cppparser/errors.cpp b/lib/cppparser/errors.cpp index 5ce5058d..2622e7de 100644 --- a/lib/cppparser/errors.cpp +++ b/lib/cppparser/errors.cpp @@ -20,6 +20,6 @@ #include "errors.h" #include <tdelocale.h> -QT_STATIC_CONST_IMPL Error& Errors::InternalError = Error( 1, -1, i18n("Internal Error") ); -QT_STATIC_CONST_IMPL Error& Errors::SyntaxError = Error( 2, -1, i18n("Syntax Error before '%1'") ); -QT_STATIC_CONST_IMPL Error& Errors::ParseError = Error( 3, -1, i18n("Parse Error before '%1'") ); +const Error& Errors::InternalError = Error( 1, -1, i18n("Internal Error") ); +const Error& Errors::SyntaxError = Error( 2, -1, i18n("Syntax Error before '%1'") ); +const Error& Errors::ParseError = Error( 3, -1, i18n("Parse Error before '%1'") ); |