Remove K_EXPORT_PLUGIN macro from plasma/scripting

This commit is contained in:
Sebastian Kügler 2013-08-07 02:52:37 +02:00
parent 606c565f4a
commit 7554419e1d
3 changed files with 3 additions and 6 deletions

View File

@ -189,8 +189,7 @@ private:
};
#define K_EXPORT_PLASMA_APPLETSCRIPTENGINE(libname, classname) \
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
K_EXPORT_PLUGIN(factory("plasma_appletscriptengine_" #libname))
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();)
} //Plasma namespace

View File

@ -144,8 +144,7 @@ private:
};
#define K_EXPORT_PLASMA_DATAENGINESCRIPTENGINE(libname, classname) \
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
K_EXPORT_PLUGIN(factory("plasma_dataenginescriptengine_" #libname))
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();)
} //Plasma namespace

View File

@ -127,8 +127,7 @@ private:
};
#define K_EXPORT_PLASMA_RUNNERSCRIPTENGINE(libname, classname) \
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
K_EXPORT_PLUGIN(factory("plasma_runnerscriptengine_" #libname))
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();)
} //Plasma namespace