summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-17 16:02:56 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-17 16:02:56 +0300
commit29402e0b1833dfc19fb646e2b7541a401ff9ffe8 (patch)
tree0efb1c18579a1531b968887085b0308f5f93ed9c
parent28072bc9da91582e5a0caec64fba880f51e5d639 (diff)
downloadplus-29402e0b1833dfc19fb646e2b7541a401ff9ffe8.tar.gz
plus-29402e0b1833dfc19fb646e2b7541a401ff9ffe8.tar.bz2
plus-29402e0b1833dfc19fb646e2b7541a401ff9ffe8.tar.xz
plus-29402e0b1833dfc19fb646e2b7541a401ff9ffe8.zip
Create public variable for spellpopup.
-rw-r--r--src/gui/popups/spellpopup.cpp2
-rw-r--r--src/gui/popups/spellpopup.h2
-rw-r--r--src/gui/windowmanager.cpp4
3 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/popups/spellpopup.cpp b/src/gui/popups/spellpopup.cpp
index e8bfee72d..eb82a637d 100644
--- a/src/gui/popups/spellpopup.cpp
+++ b/src/gui/popups/spellpopup.cpp
@@ -31,6 +31,8 @@
#include "debug.h"
+SpellPopup *spellPopup = nullptr;
+
SpellPopup::SpellPopup() :
Popup("SpellPopup", "spellpopup.xml"),
mItemName(new Label(this)),
diff --git a/src/gui/popups/spellpopup.h b/src/gui/popups/spellpopup.h
index 0352161fc..7db1dcf2b 100644
--- a/src/gui/popups/spellpopup.h
+++ b/src/gui/popups/spellpopup.h
@@ -67,4 +67,6 @@ class SpellPopup final : public Popup
Label *mItemComment;
};
+extern SpellPopup *spellPopup;
+
#endif // GUI_POPUPS_SPELLPOPUP_H
diff --git a/src/gui/windowmanager.cpp b/src/gui/windowmanager.cpp
index 9b359f12a..de8f57a62 100644
--- a/src/gui/windowmanager.cpp
+++ b/src/gui/windowmanager.cpp
@@ -35,6 +35,7 @@
#include "gui/popups/beingpopup.h"
#include "gui/popups/itempopup.h"
#include "gui/popups/popupmenu.h"
+#include "gui/popups/spellpopup.h"
#include "gui/popups/textpopup.h"
#include "gui/windows/didyouknowwindow.h"
@@ -106,6 +107,8 @@ void WindowManager::createWindows()
textPopup->postInit();
itemPopup = new ItemPopup;
itemPopup->postInit();
+ spellPopup = new SpellPopup;
+ spellPopup->postInit();
}
void WindowManager::deleteWindows()
@@ -113,6 +116,7 @@ void WindowManager::deleteWindows()
delete2(textPopup);
delete2(beingPopup);
delete2(itemPopup);
+ delete2(spellPopup);
delete2(popupMenu);
delete2(commandHandler);
delete2(didYouKnowWindow);