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/pluginloader/ripperpluginloader.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/pluginloader/ripperpluginloader.h')
-rwxr-xr-x | src/pluginloader/ripperpluginloader.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/pluginloader/ripperpluginloader.h b/src/pluginloader/ripperpluginloader.h index 6cf965e..7221d54 100755 --- a/src/pluginloader/ripperpluginloader.h +++ b/src/pluginloader/ripperpluginloader.h @@ -24,34 +24,34 @@ public: */ virtual ~RipperPlugin(); - QString filePathName; // the file name of th plugin (needed to detect write permissions) + TQString filePathName; // the file name of th plugin (needed to detect write permissions) struct Info { int version; // the version of our plugin (v0.2.1 = 201, v11.3 = 110300) - QString name; // the name of our plugin - QString author; // the author of the plugin - QString about; // a short information aboue the plugin + TQString name; // the name of our plugin + TQString author; // the author of the plugin + TQString about; // a short information aboue the plugin } info; struct Rip { //PluginLoaderBase::FeatureLevel level; int rank; - QString bin; - QString param; - QString silent_param; - QString out_file; - QString track; - QString device; - QString overwrite; - QString output; + TQString bin; + TQString param; + TQString silent_param; + TQString out_file; + TQString track; + TQString device; + TQString overwrite; + TQString output; struct FullDisc { bool enabled; - QString param; - QString output; + TQString param; + TQString output; } full_disc; } rip; }; @@ -64,6 +64,7 @@ public: class RipperPluginLoader : public PluginLoaderBase { Q_OBJECT + TQ_OBJECT public: /** * Constructor @@ -76,9 +77,9 @@ public: virtual ~RipperPluginLoader(); /** is this file a ripper plugin and loadable? */ - int verifyFile( QString ); + int verifyFile( TQString ); /** load a given file */ - RipperPlugin* loadFile( QString ); + RipperPlugin* loadFile( TQString ); }; #endif // RIPPERPLUGINLOADER_H |