diff options
Diffstat (limited to 'kexi/plugins/macros/lib/exception.h')
-rw-r--r-- | kexi/plugins/macros/lib/exception.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/plugins/macros/lib/exception.h b/kexi/plugins/macros/lib/exception.h index 73504de0..bcf4abff 100644 --- a/kexi/plugins/macros/lib/exception.h +++ b/kexi/plugins/macros/lib/exception.h @@ -20,8 +20,8 @@ #ifndef KOMACRO_EXCEPTION_H #define KOMACRO_EXCEPTION_H -#include <qstring.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqstringlist.h> #include "komacro_export.h" @@ -41,7 +41,7 @@ namespace KoMacro { * @param errormessage A describing errormessage why the * exception got thrown. */ - explicit Exception(const QString& errormessage); + explicit Exception(const TQString& errormessage); /** * Copy-constructor. @@ -56,7 +56,7 @@ namespace KoMacro { /** * @return a describing errormessage. */ - const QString errorMessage() const; + const TQString errorMessage() const; /** * @return a stringlist of traces. This are normaly just @@ -65,12 +65,12 @@ namespace KoMacro { * we finally catched the error to display it to the * user. */ - const QString traceMessages() const; + const TQString traceMessages() const; /** * Add the message @p tracemessage to the list of traces. */ - void addTraceMessage(const QString& tracemessage); + void addTraceMessage(const TQString& tracemessage); private: /// @internal d-pointer class. |