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/dcopinterface.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/dcopinterface.h')
-rwxr-xr-x | src/dcopinterface.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/dcopinterface.h b/src/dcopinterface.h index 18a097c..b056c54 100755 --- a/src/dcopinterface.h +++ b/src/dcopinterface.h @@ -5,7 +5,7 @@ #include <dcopobject.h> -#include <qstringlist.h> +#include <tqstringlist.h> /** * @short The soundKonverter DCOP interface @@ -20,25 +20,25 @@ k_dcop: * When a new instance of soundKonverter should be created, * this function is called and all @p files are passed, that should be opened (for conversion). */ - virtual void openArgFiles( const QStringList &files ) = 0; + virtual void openArgFiles( const TQStringList &files ) = 0; /** * When a new instance of soundKonverter should be created, * this function is called and all @p files are passed, that should be opened for editing the replaygain tag. */ - virtual void openArgReplayGainFiles( const QStringList &files ) = 0; + virtual void openArgReplayGainFiles( const TQStringList &files ) = 0; /* * When a new instance of soundKonverter should be created, * this function is called and all @p files are passed, that should be opened for repair. */ -// virtual void openArgRepairFiles( const QStringList &files ) = 0; +// virtual void openArgRepairFiles( const TQStringList &files ) = 0; // TODO code cleanups /* - virtual void openFiles(const QStringList &files) = 0; - virtual void openReplayGainFiles(const QStringList &files) = 0; + virtual void openFiles(const TQStringList &files) = 0; + virtual void openReplayGainFiles(const TQStringList &files) = 0; virtual void showFileDialog() = 0; virtual void showDirDialog() = 0; virtual void showCDDialog() = 0; @@ -50,7 +50,7 @@ k_dcop: virtual void startConversion() = 0; virtual void stopConversion() = 0; virtual void killConversion() = 0; - virtual void removeFiles(const QStringList &files) = 0; + virtual void removeFiles(const TQStringList &files) = 0; */ }; |