diff options
Diffstat (limited to 'microbe/variable.h')
-rw-r--r-- | microbe/variable.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/microbe/variable.h b/microbe/variable.h index f5848c1..7162c03 100644 --- a/microbe/variable.h +++ b/microbe/variable.h @@ -21,11 +21,11 @@ #ifndef VARIABLE_H #define VARIABLE_H -#include <qstring.h> -#include <qvaluelist.h> +#include <tqstring.h> +#include <tqvaluelist.h> class PortPin; -typedef QValueList<PortPin> PortPinList; +typedef TQValueList<PortPin> PortPinList; /** @@ -43,12 +43,12 @@ class Variable invalidType }; - Variable( VariableType type, const QString & name ); + Variable( VariableType type, const TQString & name ); Variable(); ~Variable(); VariableType type() const { return m_type; } - QString name() const { return m_name; } + TQString name() const { return m_name; } /** * @returns whether the variable can be read from (e.g. the seven @@ -71,9 +71,9 @@ class Variable protected: VariableType m_type; - QString m_name; + TQString m_name; PortPinList m_portPinList; }; -typedef QValueList<Variable> VariableList; +typedef TQValueList<Variable> VariableList; #endif |