diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-06 00:04:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-06 00:04:33 +0300 |
commit | 7b155f111daf5d7ae477b16d0f0789b1113bea74 (patch) | |
tree | 2d2711ab1f9daed793171383af1a7e1fa6ff737c /src/gui/textcommandeditor.h | |
parent | c3afff20d4989ab2835545715bbe67e5b5d9b353 (diff) | |
download | plus-7b155f111daf5d7ae477b16d0f0789b1113bea74.tar.gz plus-7b155f111daf5d7ae477b16d0f0789b1113bea74.tar.bz2 plus-7b155f111daf5d7ae477b16d0f0789b1113bea74.tar.xz plus-7b155f111daf5d7ae477b16d0f0789b1113bea74.zip |
Fix some issues after auto checking.
Diffstat (limited to 'src/gui/textcommandeditor.h')
-rw-r--r-- | src/gui/textcommandeditor.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gui/textcommandeditor.h b/src/gui/textcommandeditor.h index 39952f353..2221a9507 100644 --- a/src/gui/textcommandeditor.h +++ b/src/gui/textcommandeditor.h @@ -72,6 +72,7 @@ class TextCommandEditor : public Window, public gcn::ActionListener void deleteCommand(); + bool mIsMagicCommand; TextCommand *mCommand; bool mAdvanced; @@ -85,29 +86,27 @@ class TextCommandEditor : public Window, public gcn::ActionListener Label *mCommentLabel; TextField *mCommentTextField; + TargetTypeModel *mTargetTypeModel; Label *mTypeLabel; DropDown *mTypeDropDown; + IconsModal *mIconsModal; Label *mIconLabel; DropDown *mIconDropDown; Label *mManaLabel; IntTextField *mManaField; Label *mMagicLvlLabel; IntTextField *mMagicLvlField; + MagicSchoolModel *mMagicSchoolModel; Label *mSchoolLabel; DropDown *mSchoolDropDown; Label *mSchoolLvlLabel; IntTextField *mSchoolLvlField; - IconsModal *mIconsModal; - TargetTypeModel *mTargetTypeModel; - MagicSchoolModel *mMagicSchoolModel; - //Button *mAdvancedButton; Button *mCancelButton; Button *mSaveButton; Button *mDeleteButton; bool mEnabledKeyboard; - bool mIsMagicCommand; }; #endif |