diff options
Diffstat (limited to 'src/convert.h')
-rwxr-xr-x | src/convert.h | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/src/convert.h b/src/convert.h index d69fec4..1bde423 100755 --- a/src/convert.h +++ b/src/convert.h @@ -5,8 +5,8 @@ #include <kio/jobclasses.h> -#include <qobject.h> -#include <qvaluelist.h> +#include <tqobject.h> +#include <tqvaluelist.h> #include <kprocess.h> @@ -75,13 +75,13 @@ public: KTempFile* tempWavFile; KTempFile* tempOutFile; - QString correctionInFile; - QString correctionOutFile; - QString correctionInputExtension; - QString correctionOutputExtension; + TQString correctionInFile; + TQString correctionOutFile; + TQString correctionInputExtension; + TQString correctionOutputExtension; - //QTime readOutputTimer; - QTime lastOutputTimer; + //TQTime readOutputTimer; + TQTime lastOutputTimer; /** what shall we do with the file? */ Mode mode; @@ -91,10 +91,10 @@ public: /** the id with that the item is registered at the logger */ int logID; /** the binary for special treatment */ -// QString binary; +// TQString binary; /** the path and the name of the output file (needed for executing a command after conversion) */ - QString outputFilePathName; + TQString outputFilePathName; /** if it is an audio cd and it should be ripped to one file: the number of tracks on the cd */ int tracks; @@ -119,9 +119,10 @@ public: * @author Daniel Faust <[email protected]> * @version 0.3 */ -class Convert : public QObject +class Convert : public TQObject { Q_OBJECT + TQ_OBJECT public: /** * Constructor @@ -197,14 +198,14 @@ private: void remove( ConvertItem* item, int state = 0 ); /** holds all active files */ - QValueList<ConvertItem*> items; + TQValueList<ConvertItem*> items; Config* config; TagEngine* tagEngine; CDManager* cdManager; FileList* fileList; Logger* logger; - QTimer* tUpdateProgressIndicator; + TQTimer* tUpdateProgressIndicator; KProcess notify; private slots: @@ -271,7 +272,7 @@ signals: /** * The next track from @p device can be ripped while the track is being encoded */ - void rippingFinished( const QString& device ); + void rippingFinished( const TQString& device ); void countTime( float ); void uncountTime( float ); |