summaryrefslogtreecommitdiff
path: root/src/gui/textcommandeditor.cpp
diff options
context:
space:
mode:
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 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)),