diff options
Diffstat (limited to 'src/rip/k3baudioripjob.h')
-rw-r--r-- | src/rip/k3baudioripjob.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/rip/k3baudioripjob.h b/src/rip/k3baudioripjob.h index adf47f3..691af34 100644 --- a/src/rip/k3baudioripjob.h +++ b/src/rip/k3baudioripjob.h @@ -23,7 +23,7 @@ #include <k3bcddbresult.h> #include <k3baudioencoder.h> -#include <qvaluevector.h> +#include <tqvaluevector.h> class K3bInterferingSystemsHandler; class K3bThreadJob; @@ -32,13 +32,14 @@ class K3bThreadJob; class K3bAudioRipJob : public K3bJob { Q_OBJECT + TQ_OBJECT public: - K3bAudioRipJob( K3bJobHandler* hdl, QObject* parent ); + K3bAudioRipJob( K3bJobHandler* hdl, TQObject* tqparent ); ~K3bAudioRipJob(); - QString jobDescription() const; - QString jobDetails() const; + TQString jobDescription() const; + TQString jobDetails() const; public slots: void start(); @@ -46,7 +47,7 @@ class K3bAudioRipJob : public K3bJob void setDevice( K3bDevice::Device* dev ) { m_thread->setDevice( dev ); } void setCddbEntry( const K3bCddbResultEntry& entry ) { m_thread->setCddbEntry( entry ); } - void setTracksToRip( const QValueVector<QPair<int, QString> >& tracksToRip ) { m_thread->setTracksToRip( tracksToRip ); } + void setTracksToRip( const TQValueVector<TQPair<int, TQString> >& tracksToRip ) { m_thread->setTracksToRip( tracksToRip ); } void setParanoiaMode( int mode ) { m_thread->setParanoiaMode( mode ); } void setMaxRetries( int retries ) { m_thread->setMaxRetries( retries ); } void setNeverSkip( bool neverSkip ) { m_thread->setNeverSkip( neverSkip ); } @@ -54,10 +55,10 @@ class K3bAudioRipJob : public K3bJob void setWriteCueFile( bool cue ) { m_thread->setWriteCueFile( cue ); } void setEncoder( K3bAudioEncoder* encoder ) { m_thread->setEncoder( encoder ); } void setWritePlaylist( bool playlist ) { m_thread->setWritePlaylist( playlist ); } - void setPlaylistFilename( const QString& filename ) { m_thread->setPlaylistFilename( filename ); } + void setPlaylistFilename( const TQString& filename ) { m_thread->setPlaylistFilename( filename ); } void setUseRelativePathInPlaylist( bool relative ) { m_thread->setUseRelativePathInPlaylist( relative ); } void setUseIndex0( bool index0 ) { m_thread->setUseIndex0( index0 ); } - void setFileType( const QString& filetype ) { m_thread->setFileType( filetype ); } + void setFileType( const TQString& filetype ) { m_thread->setFileType( filetype ); } private slots: void slotRippingFinished( bool ); |