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/group.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/group.h')
-rw-r--r-- | kitchensync/libqopensync/group.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kitchensync/libqopensync/group.h b/kitchensync/libqopensync/group.h index e03365dfe..750e7c41c 100644 --- a/kitchensync/libqopensync/group.h +++ b/kitchensync/libqopensync/group.h @@ -22,8 +22,8 @@ #ifndef QSYNC_GROUP_H #define QSYNC_GROUP_H -#include <qdatetime.h> -#include <qstringlist.h> +#include <tqdatetime.h> +#include <tqstringlist.h> #include <libqopensync/filter.h> #include <libqopensync/member.h> @@ -42,8 +42,8 @@ class GroupConfig public: GroupConfig(); - QStringList activeObjectTypes() const; - void setActiveObjectTypes( const QStringList &objectTypes ); + TQStringList activeObjectTypes() const; + void setActiveObjectTypes( const TQStringList &objectTypes ); private: OSyncGroup *mGroup; @@ -119,22 +119,22 @@ class Group /** Sets the name of the group. */ - void setName( const QString &name ); + void setName( const TQString &name ); /** Returns the name of the group. */ - QString name() const; + TQString name() const; /** Sets the time of the last successfull synchronization. */ - void setLastSynchronization( const QDateTime &dateTime ); + void setLastSynchronization( const TQDateTime &dateTime ); /** Returns the time of the last successfull synchronization. */ - QDateTime lastSynchronization() const; + TQDateTime lastSynchronization() const; /** Locks the group. @@ -186,13 +186,13 @@ class Group Set, if the object type with given name is enabled for synchronisation for this group. */ - void setObjectTypeEnabled( const QString &objectType, bool enabled ); + void setObjectTypeEnabled( const TQString &objectType, bool enabled ); /** Returns whether the object type with given name is enabled for synchronisation for this group. */ - bool isObjectTypeEnabled( const QString &objectType ) const; + bool isObjectTypeEnabled( const TQString &objectType ) const; /** Saves the configuration to hard disc. |