diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kabc/plugins/file/resourcefile.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kabc/plugins/file/resourcefile.h')
-rw-r--r-- | kabc/plugins/file/resourcefile.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kabc/plugins/file/resourcefile.h b/kabc/plugins/file/resourcefile.h index 84dfc7cda..b44c22ec1 100644 --- a/kabc/plugins/file/resourcefile.h +++ b/kabc/plugins/file/resourcefile.h @@ -52,7 +52,7 @@ class KABC_EXPORT ResourceFile : public Resource /** Construct file resource on file @arg fileName using format @arg formatName. */ - ResourceFile( const QString &fileName, const QString &formatName = "vcard" ); + ResourceFile( const TQString &fileName, const TQString &formatName = "vcard" ); /** Destructor. @@ -103,22 +103,22 @@ class KABC_EXPORT ResourceFile : public Resource /** Set name of file to be used for saving. */ - void setFileName( const QString & ); + void setFileName( const TQString & ); /** Return name of file used for loading and saving the address book. */ - QString fileName() const; + TQString fileName() const; /** Sets a new format by name. */ - void setFormat( const QString &name ); + void setFormat( const TQString &name ); /** Returns the format name. */ - QString format() const; + TQString format() const; /** Remove a addressee from its source. @@ -136,14 +136,14 @@ class KABC_EXPORT ResourceFile : public Resource void fileChanged(); protected: - void init( const QString &fileName, const QString &format ); + void init( const TQString &fileName, const TQString &format ); - bool lock( const QString &fileName ); - void unlock( const QString &fileName ); + bool lock( const TQString &fileName ); + void unlock( const TQString &fileName ); private: - QString mFileName; - QString mFormatName; + TQString mFileName; + TQString mFormatName; FormatPlugin *mFormat; |