diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /libk3b/core/k3bthread.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk3b/core/k3bthread.h')
-rw-r--r-- | libk3b/core/k3bthread.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libk3b/core/k3bthread.h b/libk3b/core/k3bthread.h index f7e68fc..c57ab67 100644 --- a/libk3b/core/k3bthread.h +++ b/libk3b/core/k3bthread.h @@ -17,10 +17,10 @@ #ifndef _K3B_THREAD_H_ #define _K3B_THREAD_H_ -#include <qthread.h> +#include <tqthread.h> #include "k3b_export.h" -class QObject; +class TQObject; /** * The threaded couterpart to K3bJob @@ -34,14 +34,14 @@ class QObject; * * See K3bThreadJob for more information. */ -class LIBK3B_EXPORT K3bThread : public QThread +class LIBK3B_EXPORT K3bThread : public TQThread { public: - K3bThread( QObject* eventHandler = 0 ); - K3bThread( unsigned int stackSize, QObject* eventHandler = 0 ); + K3bThread( TQObject* eventHandler = 0 ); + K3bThread( unsigned int stackSize, TQObject* eventHandler = 0 ); virtual ~K3bThread(); - void setProgressInfoEventHandler( QObject* eventHandler ); + void setProgressInfoEventHandler( TQObject* eventHandler ); /** * Initialize the thread before starting it in the GUi thread. @@ -58,8 +58,8 @@ class LIBK3B_EXPORT K3bThread : public QThread */ virtual void cancel(); - virtual QString jobDescription() const; - virtual QString jobDetails() const; + virtual TQString jobDescription() const; + virtual TQString jobDetails() const; /** * waits until all running K3bThread have finished. @@ -73,7 +73,7 @@ class LIBK3B_EXPORT K3bThread : public QThread /** * uses the K3bJob::MessageType enum */ - void emitInfoMessage( const QString& msg, int type ); + void emitInfoMessage( const TQString& msg, int type ); void emitPercent( int p ); void emitSubPercent( int p ); void emitStarted(); @@ -81,9 +81,9 @@ class LIBK3B_EXPORT K3bThread : public QThread void emitFinished( bool success ); void emitProcessedSize( int processed, int size ); void emitProcessedSubSize( int processed, int size ); - void emitNewTask( const QString& job ); - void emitNewSubTask( const QString& job ); - void emitDebuggingOutput(const QString&, const QString&); + void emitNewTask( const TQString& job ); + void emitNewSubTask( const TQString& job ); + void emitDebuggingOutput(const TQString&, const TQString&); void emitData( const char* data, int len ); void emitNextTrack( int track, int trackNum ); |