summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-07 22:09:11 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-07 22:09:11 +0300
commitb7e35a7bbd41c39fa675e77b2af6a11bb4d86dd2 (patch)
treeee27a5a1ace7e5dbc588466dc623013e4d5cea99 /src/gui/setup.cpp
parent7d3059516fc25134d0d29b497e546f2846162399 (diff)
downloadManaVerse-b7e35a7bbd41c39fa675e77b2af6a11bb4d86dd2.tar.gz
ManaVerse-b7e35a7bbd41c39fa675e77b2af6a11bb4d86dd2.tar.bz2
ManaVerse-b7e35a7bbd41c39fa675e77b2af6a11bb4d86dd2.tar.xz
ManaVerse-b7e35a7bbd41c39fa675e77b2af6a11bb4d86dd2.zip
Improve constructors in some classes.
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r--src/gui/setup.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp
index 161b2326d..51c8eb9f8 100644
--- a/src/gui/setup.cpp
+++ b/src/gui/setup.cpp
@@ -51,7 +51,9 @@ extern Window *statusWindow;
Setup::Setup():
Window(_("Setup"), false, nullptr, "setup.xml"),
- mResetWindows(nullptr)
+ ActionListener(),
+ mResetWindows(nullptr),
+ mPanel(new TabbedArea)
{
setCloseButton(true);
setResizable(true);
@@ -88,7 +90,6 @@ Setup::Setup():
mResetWindows = btn;
}
- mPanel = new TabbedArea;
mPanel->setDimension(gcn::Rectangle(5, 5, width - 10, height - 40));
mPanel->enableScrollButtons(true);