diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /lib/store/KoTarStore.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/store/KoTarStore.h')
-rw-r--r-- | lib/store/KoTarStore.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/store/KoTarStore.h b/lib/store/KoTarStore.h index 21ab3ac6..982c1b8d 100644 --- a/lib/store/KoTarStore.h +++ b/lib/store/KoTarStore.h @@ -29,26 +29,26 @@ class KURL; class KoTarStore : public KoStoreBase { public: - KoTarStore( const QString & _filename, Mode _mode, const QCString & appIdentification ); - KoTarStore( QIODevice *dev, Mode mode, const QCString & appIdentification ); + KoTarStore( const TQString & _filename, Mode _mode, const TQCString & appIdentification ); + KoTarStore( TQIODevice *dev, Mode mode, const TQCString & appIdentification ); /** * KURL-constructor * @todo saving not completely implemented (fixed temporary file) * @since 1.4 */ - KoTarStore( QWidget* window, const KURL& url, const QString & _filename, Mode _mode, const QCString & appIdentification ); + KoTarStore( TQWidget* window, const KURL& url, const TQString & _filename, Mode _mode, const TQCString & appIdentification ); ~KoTarStore(); protected: virtual bool init( Mode _mode ); - virtual bool openWrite( const QString& name ); - virtual bool openRead( const QString& name ); + virtual bool openWrite( const TQString& name ); + virtual bool openRead( const TQString& name ); virtual bool closeWrite(); virtual bool closeRead() { return true; } - virtual bool enterRelativeDirectory( const QString& dirName ); - virtual bool enterAbsoluteDirectory( const QString& path ); - virtual bool fileExists( const QString& absPath ) const; + virtual bool enterRelativeDirectory( const TQString& dirName ); + virtual bool enterAbsoluteDirectory( const TQString& path ); + virtual bool fileExists( const TQString& absPath ) const; - static QCString completeMagic( const QCString& appMimetype ); + static TQCString completeMagic( const TQCString& appMimetype ); /// The tar archive KTar * m_pTar; @@ -58,7 +58,7 @@ protected: const KArchiveDirectory* m_currentDir; /// Buffer used when writing - QByteArray m_byteArray; + TQByteArray m_byteArray; }; |