summaryrefslogtreecommitdiffstats
path: root/src/rip/k3baudioprojectconvertingthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rip/k3baudioprojectconvertingthread.h')
-rw-r--r--src/rip/k3baudioprojectconvertingthread.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/rip/k3baudioprojectconvertingthread.h b/src/rip/k3baudioprojectconvertingthread.h
index aeda217..63b8895 100644
--- a/src/rip/k3baudioprojectconvertingthread.h
+++ b/src/rip/k3baudioprojectconvertingthread.h
@@ -18,9 +18,9 @@
#define K3B_AUDIO_PROJECT_CONVERTING_THREAD_H
#include <k3bthread.h>
-#include <qobject.h>
-#include <qvaluevector.h>
-#include <qpair.h>
+#include <tqobject.h>
+#include <tqvaluevector.h>
+#include <tqpair.h>
#include <k3bcddbresult.h>
@@ -36,8 +36,8 @@ class K3bAudioProjectConvertingThread : public K3bThread
K3bAudioProjectConvertingThread( K3bAudioDoc* );
~K3bAudioProjectConvertingThread();
- QString jobDescription() const;
- QString jobDetails() const;
+ TQString jobDescription() const;
+ TQString jobDetails() const;
void setSingleFile( bool b ) { m_singleFile = b; }
@@ -49,15 +49,15 @@ class K3bAudioProjectConvertingThread : public K3bThread
/**
* Used for encoders that support multiple formats
*/
- void setFileType( const QString& );
+ void setFileType( const TQString& );
/**
* 1 is the first track
*/
- void setTracksToRip( const QValueVector<QPair<int, QString> >& t ) { m_tracks = t; }
+ void setTracksToRip( const TQValueVector<TQPair<int, TQString> >& t ) { m_tracks = t; }
void setWritePlaylist( bool b ) { m_writePlaylist = b; }
- void setPlaylistFilename( const QString& s ) { m_playlistFilename = s; }
+ void setPlaylistFilename( const TQString& s ) { m_playlistFilename = s; }
void setUseRelativePathInPlaylist( bool b ) { m_relativePathInPlaylist = b; }
void setWriteCueFile( bool b ) { m_writeCueFile = b; }
@@ -69,28 +69,28 @@ class K3bAudioProjectConvertingThread : public K3bThread
void cancel();
private:
- /** reimplemented from QThread. Does the work */
+ /** reimplemented from TQThread. Does the work */
void run();
- bool convertTrack( K3bAudioTrack*, const QString& filename );
+ bool convertTrack( K3bAudioTrack*, const TQString& filename );
bool writePlaylist();
bool writeCueFile();
/**
* Finds a relative path from baseDir to absPath
*/
- QString findRelativePath( const QString& absPath, const QString& baseDir );
+ TQString findRelativePath( const TQString& absPath, const TQString& baseDir );
K3bCddbResultEntry m_cddbEntry;
bool m_singleFile;
bool m_writePlaylist;
bool m_relativePathInPlaylist;
- QString m_playlistFilename;
+ TQString m_playlistFilename;
bool m_writeCueFile;
- QValueVector<QPair<int, QString> > m_tracks;
+ TQValueVector<TQPair<int, TQString> > m_tracks;
K3bAudioDoc* m_doc;