From a2277b6bc715464e83882b90c2a058139b8a6b54 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 23 Jun 2011 01:42:07 +0000 Subject: TQt4 port kdeutils This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1238125 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ark/tarlistingthread.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ark/tarlistingthread.h') diff --git a/ark/tarlistingthread.h b/ark/tarlistingthread.h index 25ce188..b6f1dea 100644 --- a/ark/tarlistingthread.h +++ b/ark/tarlistingthread.h @@ -29,25 +29,25 @@ class TQString; class KArchive; -class ListingEvent: public QCustomEvent +class ListingEvent: public TQCustomEvent { public: - enum Status { Normal, Error, ListingFinished }; - ListingEvent( const TQStringList& data, Status st = Normal ) + enum tqStatus { Normal, Error, ListingFinished }; + ListingEvent( const TQStringList& data, tqStatus st = Normal ) : TQCustomEvent( 65442 ), m_data( data ), m_status( st ) {} const TQStringList& columns() const { return m_data; } - Status status() const { return m_status; } + tqStatus status() const { return m_status; } private: TQStringList m_data; - Status m_status; + tqStatus m_status; }; -class TarListingThread: public QThread +class TarListingThread: public TQThread { public: - TarListingThread( TQObject *parent, const TQString& filename ); + TarListingThread( TQObject *tqparent, const TQString& filename ); ~TarListingThread(); protected: -- cgit v1.2.1