author | ulf69 <ulf69> | 2004-08-02 17:47:20 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-02 17:47:20 (UTC) |
commit | d8b187d8760766416a9527f3e12789198b30840a (patch) (unidiff) | |
tree | 20a6c1ea46568761e05c9bad7ea7afda503dc092 /libkdepim/ksyncprofile.h | |
parent | f6a823824e6a8be3d842e99b43dacd495bb02ba4 (diff) | |
download | kdepimpi-d8b187d8760766416a9527f3e12789198b30840a.zip kdepimpi-d8b187d8760766416a9527f3e12789198b30840a.tar.gz kdepimpi-d8b187d8760766416a9527f3e12789198b30840a.tar.bz2 |
added changes to support Ka/Pi resources in combination of
syncprofiles.
Attention: The old format is not compatible with the new.
-rw-r--r-- | libkdepim/ksyncprofile.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h index 300f70f..8995def 100644 --- a/libkdepim/ksyncprofile.h +++ b/libkdepim/ksyncprofile.h | |||
@@ -39,3 +39,3 @@ class KConfig; | |||
39 | @see KPref | 39 | @see KPref |
40 | 40 | ||
41 | This class represents one preferences setting as used by @ref KPrefs. | 41 | This class represents one preferences setting as used by @ref KPrefs. |
@@ -48,5 +48,5 @@ class KSyncProfile : public QObject { | |||
48 | public: | 48 | public: |
49 | KSyncProfile( const char * name = 0); | 49 | KSyncProfile( const char * identifier = 0); |
50 | ~KSyncProfile() ; | 50 | ~KSyncProfile() ; |
51 | 51 | ||
52 | KSyncProfile* clone(); | 52 | KSyncProfile* clone(); |
@@ -55,4 +55,6 @@ class KSyncProfile : public QObject { | |||
55 | void writeConfig(KConfig *); | 55 | void writeConfig(KConfig *); |
56 | void setName( const QString& n ) {mName = n;} | 56 | void deleteConfig(KConfig *); |
57 | QString getName( ) { return mName;} | 57 | |
58 | void setIdentifier( const QString& i ) {mIdentifier = i;} | ||
59 | QString getIdentifier( ) { return mIdentifier;} | ||
58 | void setPreSyncCommand( const QString& n ) {mPreSyncCommand = n;} | 60 | void setPreSyncCommand( const QString& n ) {mPreSyncCommand = n;} |
@@ -86,2 +88,4 @@ class KSyncProfile : public QObject { | |||
86 | 88 | ||
89 | void setName( const QString& n ) {mName = n;} | ||
90 | QString getName( ) { return mName;} | ||
87 | void setShowSummaryAfterSync( bool b ) { mShowSummaryAfterSync = b;} | 91 | void setShowSummaryAfterSync( bool b ) { mShowSummaryAfterSync = b;} |
@@ -108,5 +112,5 @@ class KSyncProfile : public QObject { | |||
108 | bool getIsPhoneSync( ) { return mIsPhoneSync;} | 112 | bool getIsPhoneSync( ) { return mIsPhoneSync;} |
109 | |||
110 | private: | 113 | private: |
111 | QString mName; | 114 | QString mName; |
115 | QString mIdentifier; | ||
112 | QString mPreSyncCommand; | 116 | QString mPreSyncCommand; |