diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /kaudiocreator/job.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaudiocreator/job.h')
-rw-r--r-- | kaudiocreator/job.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kaudiocreator/job.h b/kaudiocreator/job.h index e7faefdd..bb65eed9 100644 --- a/kaudiocreator/job.h +++ b/kaudiocreator/job.h @@ -21,7 +21,7 @@ #ifndef JOB_H #define JOB_H -#include <qmap.h> +#include <tqmap.h> #include <klocale.h> /** @@ -33,34 +33,34 @@ class Job{ public: inline Job():id(-1),track_title(""),track_artist(""), track(-1),track_comment(""), year(-1), genre(i18n("Other")), group(""), album(""), comment(""), lastSongInAlbum(false), removeTempFile(true), encoder(-1) {}; - QString replaceSpecialChars(const QString &string, bool quote, QMap<QString,QString> map); + TQString replaceSpecialChars(const TQString &string, bool quote, TQMap<TQString,TQString> map); - void fix( const QString &in, const QString &out ); + void fix( const TQString &in, const TQString &out ); // The device to obtain the file such as /dev/cdrom/ (Used when ripping and ejecting) - QString device; + TQString device; int id; - QString track_title; - QString track_artist; + TQString track_title; + TQString track_artist; int track; - QString track_comment; + TQString track_comment; int year; - QString genre; + TQString genre; - QString group; - QString album; - QString comment; + TQString group; + TQString album; + TQString comment; // Currently location of file X - QString location; + TQString location; // New location of a file after current opertation is complete (rip/encode). - QString newLocation; + TQString newLocation; // What was just attempted to do via this job and is spit out in the event // of an error. - QString errorString; + TQString errorString; // If this is the last track to be ripped then value is true. bool lastSongInAlbum; @@ -69,7 +69,7 @@ public: bool removeTempFile; // output from the processing. - QString output; + TQString output; int encoder; }; |