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/pluginloaderbase.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/pluginloaderbase.h')
-rwxr-xr-x | src/pluginloader/pluginloaderbase.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/pluginloader/pluginloaderbase.h b/src/pluginloader/pluginloaderbase.h index c35bebe..4b85563 100755 --- a/src/pluginloader/pluginloaderbase.h +++ b/src/pluginloader/pluginloaderbase.h @@ -3,9 +3,9 @@ #ifndef PLUGINLOADERBASE_H #define PLUGINLOADERBASE_H -#include <qobject.h> -#include <qstringlist.h> -#include <qdom.h> +#include <tqobject.h> +#include <tqstringlist.h> +#include <tqdom.h> #include "config.h" @@ -16,9 +16,10 @@ * @author Daniel Faust <[email protected]> * @version 0.3 */ -class PluginLoaderBase : public QObject +class PluginLoaderBase : public TQObject { Q_OBJECT + TQ_OBJECT public: /** * Do we recommend this backend to the user @@ -50,10 +51,10 @@ public: virtual ~PluginLoaderBase(); /** a list of all plugin files that are loaded at the moment */ -// QStringList openPluginFiles; +// TQStringList openPluginFiles; /** the dom tree for loading the xml file */ - QDomDocument domTree; + TQDomDocument domTree; public slots: /** @@ -64,12 +65,12 @@ public slots: /** * Unoad a specific plugin with name @p pluginName */ - void unload( QString pluginName ); + void unload( TQString pluginName ); /** * Unoad a specific plugin with name @p pluginName and delete the plugin file */ - void remove( QString pluginName ); + void remove( TQString pluginName ); }; #endif // PLUGINLOADERBASE_H @@ -77,7 +78,7 @@ public slots: /** -Each plugin package contains 3 files: +Each plugin package tqcontains 3 files: - The plugin file ( $KDE_DIR/share/apps/soundkonverter/plugins/'filename' ) - The format info file ( $KDE_DIR/share/apps/soundkonverter/format_infos/'lang'/'plugin'_'filename' ) - The service menu ( $KDE_DIR/share/apps/konqueror/servicemenus/'filename' ) |