diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-19 23:56:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:42 +0300 |
commit | d59cd9111c1e86b224ea62cc975c49b157e2b3cf (patch) | |
tree | d7186479633c0269573e92b5a5213d04b84b3995 /src/gui/textcommandeditor.cpp | |
parent | 71d2b482d84246b8456ea863f94a9a766d33f197 (diff) | |
download | plus-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.tar.gz plus-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.tar.bz2 plus-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.tar.xz plus-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.zip |
Add to some controls palette inheritance from other controls.
Diffstat (limited to 'src/gui/textcommandeditor.cpp')
-rw-r--r-- | src/gui/textcommandeditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/textcommandeditor.cpp b/src/gui/textcommandeditor.cpp index ceec14f4c..53c638e45 100644 --- a/src/gui/textcommandeditor.cpp +++ b/src/gui/textcommandeditor.cpp @@ -178,17 +178,17 @@ TextCommandEditor::TextCommandEditor(TextCommand *const command) : mCommentTextField(new TextField), mTargetTypeModel(new TargetTypeModel), mTypeLabel(new Label(_("Target Type:"))), - mTypeDropDown(new DropDown(mTargetTypeModel)), + mTypeDropDown(new DropDown(this, mTargetTypeModel)), mIconsModal(new IconsModal), mIconLabel(new Label(_("Icon:"))), - mIconDropDown(new DropDown(mIconsModal)), + mIconDropDown(new DropDown(this, mIconsModal)), mManaLabel(new Label(_("Mana:"))), mManaField(new IntTextField(0)), mMagicLvlLabel(new Label(_("Magic level:"))), mMagicLvlField(new IntTextField(0)), mMagicSchoolModel(new MagicSchoolModel), mSchoolLabel(new Label(_("Magic School:"))), - mSchoolDropDown(new DropDown(mMagicSchoolModel)), + mSchoolDropDown(new DropDown(this, mMagicSchoolModel)), mSchoolLvlLabel(new Label(_("School level:"))), mSchoolLvlField(new IntTextField(0)), mCancelButton(new Button(_("Cancel"), "cancel", this)), |