diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 23:15:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 23:15:51 +0000 |
commit | 6b1b516f42036cf9eff691dba3fd6e9eab82a7e1 (patch) | |
tree | 6830f75fd57d0fac7e33c097ee98b210e90c5239 /src/replaygain.h | |
parent | 6318b8bb3ef964cfa99ba454a2630779cc9ac3ec (diff) | |
download | soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.tar.gz soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.zip |
TQt4 port soundkonverter
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1239038 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/replaygain.h')
-rwxr-xr-x | src/replaygain.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/replaygain.h b/src/replaygain.h index ff9e38a..568d3a8 100755 --- a/src/replaygain.h +++ b/src/replaygain.h @@ -3,8 +3,8 @@ #ifndef REPLAYGAIN_H #define REPLAYGAIN_H -#include <qobject.h> -#include <qstringlist.h> +#include <tqobject.h> +#include <tqstringlist.h> class Config; class Logger; @@ -15,9 +15,10 @@ class KProcess; * @author Daniel Faust <[email protected]> * @version 0.3 */ -class ReplayGain : public QObject +class ReplayGain : public TQObject { Q_OBJECT + TQ_OBJECT public: enum Mode { calc_track = 0x0001, @@ -43,12 +44,12 @@ public: * @param prc a pointer to a KProcess * @param remove if true the Replay Gain tags are being removed, if false (default) the tags are calculated and added */ - bool apply( QStringList files, const QString& format, KProcess* proc, int logID, Mode mode = Mode(calc_track|calc_album) ); // NOTE const QStringList& ? + bool apply( TQStringList files, const TQString& format, KProcess* proc, int logID, Mode mode = Mode(calc_track|calc_album) ); // NOTE const TQStringList& ? /* * Returns the track and the album gain (in this order) of the @p file */ - //static QValueList<float> getReplayGain( QString file ); // obsolete + //static TQValueList<float> getReplayGain( TQString file ); // obsolete private: Config* config; |