diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kitchensync/libqopensync/result.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kitchensync/libqopensync/result.h')
-rw-r--r-- | kitchensync/libqopensync/result.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kitchensync/libqopensync/result.h b/kitchensync/libqopensync/result.h index c7cf13d70..f35ed347a 100644 --- a/kitchensync/libqopensync/result.h +++ b/kitchensync/libqopensync/result.h @@ -22,7 +22,7 @@ #ifndef QSYNC_RESULT_H #define QSYNC_RESULT_H -#include <qstring.h> +#include <tqstring.h> struct OSyncError; @@ -78,22 +78,22 @@ class Result /** Sets the name of the result. */ - void setName( const QString &name ); + void setName( const TQString &name ); /** Returns the name of the result. */ - QString name() const; + TQString name() const; /** Sets the message text of the result. */ - void setMessage( const QString &message ); + void setMessage( const TQString &message ); /** Returns the message text of the result. */ - QString message() const; + TQString message() const; /** Sets the type of the result. @@ -116,8 +116,8 @@ class Result bool isError() const; private: - QString mName; - QString mMessage; + TQString mName; + TQString mMessage; Type mType; }; |