diff options
Diffstat (limited to 'lib/cppparser/errors.h')
-rw-r--r-- | lib/cppparser/errors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cppparser/errors.h b/lib/cppparser/errors.h index 813d3a3f..6751475e 100644 --- a/lib/cppparser/errors.h +++ b/lib/cppparser/errors.h @@ -20,15 +20,15 @@ #ifndef ERRORS_H #define ERRORS_H -#include <qstring.h> +#include <tqstring.h> struct Error{ int code; int level; - QString text; + TQString text; - Error( int c, int l, const QString& s ) + Error( int c, int l, const TQString& s ) : code( c ), level( l ), text( s ) {} }; |