diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /ark/tar.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ark/tar.h')
-rw-r--r-- | ark/tar.h | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -57,22 +57,22 @@ class TarArch : public Arch { Q_OBJECT public: - TarArch( ArkWidget *_gui, const QString & _filename, - const QString & _openAsMimeType ); + TarArch( ArkWidget *_gui, const TQString & _filename, + const TQString & _openAsMimeType ); virtual ~TarArch(); virtual void open(); virtual void create(); - virtual void addFile( const QStringList & ); - virtual void addDir( const QString & ); - virtual void remove( QStringList* ); + virtual void addFile( const TQStringList & ); + virtual void addDir( const TQString & ); + virtual void remove( TQStringList* ); virtual void unarchFileInternal(); virtual int getEditFlag(); - QString getCompressor(); - QString getUnCompressor(); + TQString getCompressor(); + TQString getUnCompressor(); public slots: void updateProgress( KProcess *_kp, char *_buffer, int _bufflen ); @@ -98,21 +98,21 @@ class TarArch : public Arch void removeUpdateDone(); protected: - void customEvent( QCustomEvent * ); + void customEvent( TQCustomEvent * ); private: // methods void updateArch(); void createTmp(); void setHeaders(); - void processDir( const KTarDirectory *tardir, const QString & root ); - void deleteOldFiles( const QStringList &list, bool bAddOnlyNew ); - QString getEntry( const QString & filename ); + void processDir( const KTarDirectory *tardir, const TQString & root ); + void deleteOldFiles( const TQStringList &list, bool bAddOnlyNew ); + TQString getEntry( const TQString & filename ); private: // data // if the tar is compressed, this is the temporary uncompressed tar. KTempDir * m_tmpDir; - QString tmpfile; - QString m_fileMimeType; + TQString tmpfile; + TQString m_fileMimeType; bool compressed; // for use with createTmp and updateArch @@ -122,8 +122,8 @@ class TarArch : public Arch // for use with deleteOldFiles bool deleteInProgress; FILE *fd; - QStringList m_filesToAdd; - QStringList m_filesToRemove; + TQStringList m_filesToAdd; + TQStringList m_filesToRemove; KProcess * m_pTmpProc; KProcess * m_pTmpProc2; bool failed; |