diff options
Diffstat (limited to 'kode/variable.h')
-rw-r--r-- | kode/variable.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kode/variable.h b/kode/variable.h index 21c315c19..4cc66aa5a 100644 --- a/kode/variable.h +++ b/kode/variable.h @@ -21,8 +21,8 @@ #ifndef KODE_VARIABLE_H #define KODE_VARIABLE_H -#include <qvaluelist.h> -#include <qstring.h> +#include <tqvaluelist.h> +#include <tqstring.h> #include <kdepimmacros.h> @@ -31,28 +31,28 @@ namespace KODE { class KDE_EXPORT Variable { public: - typedef QValueList<Variable> List; + typedef TQValueList<Variable> List; Variable(); - Variable( const QString &name, const QString &type, bool isStatic = false ); + Variable( const TQString &name, const TQString &type, bool isStatic = false ); - void setType( const QString & ); - QString type() const { return mType; } + void setType( const TQString & ); + TQString type() const { return mType; } - void setName( const QString & ); - QString name() const { return mName; } + void setName( const TQString & ); + TQString name() const { return mName; } void setStatic( bool ); bool isStatic() const { return mIsStatic; } - void setInitializer( const QString & ); - QString initializer() const { return mInitializer; } + void setInitializer( const TQString & ); + TQString initializer() const { return mInitializer; } private: - QString mType; - QString mName; + TQString mType; + TQString mName; bool mIsStatic; - QString mInitializer; + TQString mInitializer; }; } |