* move the pluggable krunners into plasma/krunner

* change krunner to plasma in the plugin loader macro

this essentially helps hide krunner completely from the runner implementor and follows with the rest of the generic plugins offered by libplasma

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=723220
This commit is contained in:
Aaron J. Seigo 2007-10-09 03:41:24 +00:00
parent ff935b47f5
commit 192ba4bad3

View File

@ -163,8 +163,8 @@ class PLASMA_EXPORT AbstractRunner : public QObject
} // Plasma namespace
#define K_EXPORT_KRUNNER_RUNNER( libname, classname ) \
#define K_EXPORT_PLASMA_RUNNER( libname, classname ) \
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
K_EXPORT_PLUGIN(factory("krunner_" #libname))
K_EXPORT_PLUGIN(factory("plasma_runner_" #libname))
#endif