summaryrefslogtreecommitdiffstats
path: root/kitchensync/libqopensync/member.h
diff options
context:
space:
mode:
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 d0d883db..294c19f1 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;