diff options
Diffstat (limited to 'src/pluginloader/replaygainpluginloader.h')
-rwxr-xr-x | src/pluginloader/replaygainpluginloader.h | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/src/pluginloader/replaygainpluginloader.h b/src/pluginloader/replaygainpluginloader.h index d1c1237..639514f 100755 --- a/src/pluginloader/replaygainpluginloader.h +++ b/src/pluginloader/replaygainpluginloader.h @@ -24,39 +24,39 @@ public: */ virtual ~ReplayGainPlugin(); - 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 ReplayGain { //PluginLoaderBase::FeatureLevel level; int rank; - QString bin; - QString param; - QString silent_param; - QStringList mime_types; - QString in_files; - QString output_single; - QString output_multiple; - QString force; - QString skip; - QString track; // TODO remove track and album (put them into param) - QString album; - QString remove; + TQString bin; + TQString param; + TQString silent_param; + TQStringList mime_types; + TQString in_files; + TQString output_single; + TQString output_multiple; + TQString force; + TQString skip; + TQString track; // TODO remove track and album (put them into param) + TQString album; + TQString remove; /*struct Test // obsolete { bool enabled; - QString param; - QString output_track; - QString output_album; + TQString param; + TQString output_track; + TQString output_album; } test;*/ } replaygain; }; @@ -69,6 +69,7 @@ public: class ReplayGainPluginLoader : public PluginLoaderBase { Q_OBJECT + TQ_OBJECT public: /** * Constructor @@ -81,9 +82,9 @@ public: virtual ~ReplayGainPluginLoader(); /** is this file a replaygain plugin and loadable? */ - int verifyFile( QString ); + int verifyFile( TQString ); /** load a given file */ - ReplayGainPlugin* loadFile( QString ); + ReplayGainPlugin* loadFile( TQString ); }; #endif // REPLAYGAINPLUGINLOADER_H |