mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Remove sheet builder action when unloading the plugin.
--HG-- branch : gsoc2014-dfighter
This commit is contained in:
parent
828f31a2a4
commit
3fc289e7fa
2 changed files with 14 additions and 0 deletions
|
@ -35,6 +35,18 @@
|
|||
|
||||
using namespace Plugin;
|
||||
|
||||
SheetBuilderPlugin::SheetBuilderPlugin()
|
||||
{
|
||||
}
|
||||
|
||||
SheetBuilderPlugin::~SheetBuilderPlugin()
|
||||
{
|
||||
Core::MenuManager *menuManager = Core::ICore::instance()->menuManager();
|
||||
QAction *a = menuManager->action( "SheetBuilder" );
|
||||
menuManager->unregisterAction( "SheetBuilder" );
|
||||
delete a;
|
||||
}
|
||||
|
||||
bool SheetBuilderPlugin::initialize(ExtensionSystem::IPluginManager *pluginManager, QString *errorString)
|
||||
{
|
||||
Q_UNUSED(errorString);
|
||||
|
|
|
@ -36,6 +36,8 @@ class SheetBuilderPlugin : public QObject, public ExtensionSystem::IPlugin
|
|||
Q_OBJECT
|
||||
Q_INTERFACES(ExtensionSystem::IPlugin)
|
||||
public:
|
||||
SheetBuilderPlugin();
|
||||
~SheetBuilderPlugin();
|
||||
bool initialize(ExtensionSystem::IPluginManager *pluginManager, QString *errorString);
|
||||
void extensionsInitialized();
|
||||
void setNelContext(NLMISC::INelContext *nelContext);
|
||||
|
|
Loading…
Reference in a new issue