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/jobs/k3bclonejob.h | |
| parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
| download | k3b-d8cc8bdf.tar.gz k3b-d8cc8bdf.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/jobs/k3bclonejob.h')
| -rw-r--r-- | libk3b/jobs/k3bclonejob.h | 13 | 
1 files changed, 7 insertions, 6 deletions
diff --git a/libk3b/jobs/k3bclonejob.h b/libk3b/jobs/k3bclonejob.h index 80c8ea9..e928f3c 100644 --- a/libk3b/jobs/k3bclonejob.h +++ b/libk3b/jobs/k3bclonejob.h @@ -18,7 +18,7 @@  #include <k3bjob.h>  #include "k3b_export.h" -#include <qstring.h> +#include <tqstring.h>  namespace K3bDevice { @@ -31,16 +31,17 @@ class K3bReadcdReader;  class LIBK3B_EXPORT K3bCloneJob : public K3bBurnJob  {    Q_OBJECT +  TQ_OBJECT   public: -  K3bCloneJob( K3bJobHandler*, QObject* parent = 0, const char* name = 0 ); +  K3bCloneJob( K3bJobHandler*, TQObject* tqparent = 0, const char* name = 0 );    ~K3bCloneJob();    K3bDevice::Device* writer() const { return m_writerDevice; }    K3bDevice::Device* readingDevice() const { return m_readerDevice; } -  QString jobDescription() const; -  QString jobDetails() const; +  TQString jobDescription() const; +  TQString jobDetails() const;   public slots:    void start(); @@ -48,7 +49,7 @@ class LIBK3B_EXPORT K3bCloneJob : public K3bBurnJob    void setWriterDevice( K3bDevice::Device* w ) { m_writerDevice = w; }    void setReaderDevice( K3bDevice::Device* w ) { m_readerDevice = w; } -  void setImagePath( const QString& p ) { m_imagePath = p; } +  void setImagePath( const TQString& p ) { m_imagePath = p; }    void setNoCorrection( bool b ) { m_noCorrection = b; }    void setRemoveImageFiles( bool b ) { m_removeImageFiles = b; }    void setOnlyCreateImage( bool b ) { m_onlyCreateImage = b; } @@ -73,7 +74,7 @@ class LIBK3B_EXPORT K3bCloneJob : public K3bBurnJob    K3bDevice::Device* m_writerDevice;    K3bDevice::Device* m_readerDevice; -  QString m_imagePath; +  TQString m_imagePath;    K3bCdrecordWriter* m_writerJob;    K3bReadcdReader* m_readcdReader;  | 
