diff options
Diffstat (limited to 'kode/kwsdl/wscl/interaction.h')
-rw-r--r-- | kode/kwsdl/wscl/interaction.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kode/kwsdl/wscl/interaction.h b/kode/kwsdl/wscl/interaction.h index 2700d7c00..50ececb8c 100644 --- a/kode/kwsdl/wscl/interaction.h +++ b/kode/kwsdl/wscl/interaction.h @@ -22,7 +22,7 @@ #ifndef WSCL_INTERACTION_H #define WSCL_INTERACTION_H -#include <qvaluelist.h> +#include <tqvaluelist.h> #include "documents.h" @@ -31,7 +31,7 @@ namespace WSCL { class Interaction { public: - typedef QValueList<Interaction> List; + typedef TQValueList<Interaction> List; enum Type { @@ -45,8 +45,8 @@ class Interaction Interaction(); ~Interaction(); - void setId( const QString &id ); - QString id() const; + void setId( const TQString &id ); + TQString id() const; void setType( Type type ); Type type() const; @@ -64,7 +64,7 @@ class Interaction SendDocument sendDocument() const; private: - QString mId; + TQString mId; Type mType; SendReceiveDocument mSendReceiveDocument; |