summaryrefslogtreecommitdiff
path: root/src/toolbar_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/toolbar_gui.cpp')
-rw-r--r--src/toolbar_gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp
index f8c6691f4..0d3bffc0d 100644
--- a/src/toolbar_gui.cpp
+++ b/src/toolbar_gui.cpp
@@ -1552,9 +1552,9 @@ enum MainToolbarHotkeys {
struct MainToolbarWindow : Window {
CallBackFunction last_started_action; ///< Last started user action.
- MainToolbarWindow(const WindowDesc *desc) : Window()
+ MainToolbarWindow(WindowDesc *desc) : Window(desc)
{
- this->InitNested(desc, 0);
+ this->InitNested(0);
this->last_started_action = CBF_NONE;
CLRBITS(this->flags, WF_WHITE_BORDER);
@@ -1857,9 +1857,9 @@ enum MainToolbarEditorHotkeys {
struct ScenarioEditorToolbarWindow : Window {
CallBackFunction last_started_action; ///< Last started user action.
- ScenarioEditorToolbarWindow(const WindowDesc *desc) : Window()
+ ScenarioEditorToolbarWindow(WindowDesc *desc) : Window(desc)
{
- this->InitNested(desc, 0);
+ this->InitNested(0);
this->last_started_action = CBF_NONE;
CLRBITS(this->flags, WF_WHITE_BORDER);