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/net/resourcenet.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/net/resourcenet.h')
-rw-r--r-- | kabc/plugins/net/resourcenet.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kabc/plugins/net/resourcenet.h b/kabc/plugins/net/resourcenet.h index b315be6df..ccb59694d 100644 --- a/kabc/plugins/net/resourcenet.h +++ b/kabc/plugins/net/resourcenet.h @@ -48,7 +48,7 @@ class KABC_EXPORT ResourceNet : public Resource public: ResourceNet( const KConfig* ); - ResourceNet( const KURL &url, const QString &format ); + ResourceNet( const KURL &url, const TQString &format ); ~ResourceNet(); virtual void writeConfig( KConfig* ); @@ -77,15 +77,15 @@ class KABC_EXPORT ResourceNet : public Resource /** 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; protected: - void init( const KURL &url, const QString &format ); + void init( const KURL &url, const TQString &format ); private slots: void downloadFinished( KIO::Job* ); @@ -93,8 +93,8 @@ class KABC_EXPORT ResourceNet : public Resource void signalError(); private: - bool clearAndLoad( QFile *file ); - void saveToFile( QFile *file ); + bool clearAndLoad( TQFile *file ); + void saveToFile( TQFile *file ); bool hasTempFile() const { return mTempFile != 0; } void abortAsyncLoading(); void abortAsyncSaving(); @@ -103,7 +103,7 @@ class KABC_EXPORT ResourceNet : public Resource void deleteStaleTempFile(); FormatPlugin *mFormat; - QString mFormatName; + TQString mFormatName; KURL mUrl; KTempFile *mTempFile; |