summaryrefslogtreecommitdiffstats
path: root/kitchensync/libqopensync/member.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kitchensync/libqopensync/member.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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/member.h')
-rw-r--r--kitchensync/libqopensync/member.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kitchensync/libqopensync/member.h b/kitchensync/libqopensync/member.h
index d0d883db3..294c19f15 100644
--- a/kitchensync/libqopensync/member.h
+++ b/kitchensync/libqopensync/member.h
@@ -48,12 +48,12 @@ class Member
/**
Returns the configuration directory.
*/
- QString configurationDirectory() const;
+ TQString configurationDirectory() const;
/**
Returns the name of the plugin, the member belongs to.
*/
- QString pluginName() const;
+ TQString pluginName() const;
/**
Returns the plugin, the member belongs to.
@@ -68,18 +68,18 @@ class Member
/**
Sets the name of this member.
*/
- void setName( const QString &name );
+ void setName( const TQString &name );
/**
Returns the name of this member.
*/
- QString name() const;
+ TQString name() const;
/**
Sets the configuration data as byte array. The developer has to decide the
type of the data ( e.g. xml, plain text, binary ).
*/
- void setConfiguration( const QByteArray &configurationData );
+ void setConfiguration( const TQByteArray &configurationData );
/**
Gets the configuration data as byte array. The developer has to decide the
@@ -91,7 +91,7 @@ class Member
@returns The result of this operation.
*/
- Result configuration( QByteArray &configurationData,
+ Result configuration( TQByteArray &configurationData,
bool useDefault = true );
/**
@@ -111,13 +111,13 @@ class Member
The @param query is a plugin specific xml document as well as
the return value.
*/
- QString scanDevices( const QString &query );
+ TQString scanDevices( const TQString &query );
/**
This method can be used to test whether the plugin can connect
to the device with the given configuration.
*/
- bool testConnection( const QString &configuration );
+ bool testConnection( const TQString &configuration );
private:
OSyncMember *mMember;