summaryrefslogtreecommitdiff
path: root/src/gui/textcommandeditor.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-20 16:38:15 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-20 16:38:15 +0300
commit747dc30f256606e28fd932a9626da7c328114036 (patch)
tree1b3e7e70ba439d14d4936660d44c95c27816a11b /src/gui/textcommandeditor.cpp
parentcef2952156ab09371ed04beec00d0f1e8615ada9 (diff)
downloadplus-747dc30f256606e28fd932a9626da7c328114036.tar.gz
plus-747dc30f256606e28fd932a9626da7c328114036.tar.bz2
plus-747dc30f256606e28fd932a9626da7c328114036.tar.xz
plus-747dc30f256606e28fd932a9626da7c328114036.zip
fix style in gui directory.
Diffstat (limited to 'src/gui/textcommandeditor.cpp')
-rw-r--r--src/gui/textcommandeditor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/textcommandeditor.cpp b/src/gui/textcommandeditor.cpp
index 076a7a7f2..019d38133 100644
--- a/src/gui/textcommandeditor.cpp
+++ b/src/gui/textcommandeditor.cpp
@@ -54,7 +54,8 @@
class IconsModal final : public gcn::ListModel
{
public:
- IconsModal()
+ IconsModal() :
+ mStrings()
{
std::map<int, ItemInfo*> items = ItemDB::getItemInfos();
std::list<std::string> tempStrings;
@@ -165,6 +166,7 @@ TextCommandEditor::TextCommandEditor(TextCommand *const command) :
gcn::ActionListener(),
mIsMagicCommand(command->getCommandType() == TEXT_COMMAND_MAGIC),
mCommand(command),
+ mAdvanced(false),
mIsMagic(new RadioButton(this, _("magic"), "magic", mIsMagicCommand)),
mIsOther(new RadioButton(this, _("other"), "magic", !mIsMagicCommand)),
mSymbolLabel(new Label(this, _("Symbol:"))),
@@ -201,8 +203,6 @@ TextCommandEditor::TextCommandEditor(TextCommand *const command) :
setWindowName("TextCommandEditor");
setDefaultSize(w, h, ImageRect::CENTER);
- mAdvanced = false;
-
mIsMagic->setActionEventId("magic");
mIsMagic->addActionListener(this);