summaryrefslogtreecommitdiff
path: root/src/gui/npcdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/npcdialog.cpp')
-rw-r--r--src/gui/npcdialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp
index 3e2e860f1..6970babfb 100644
--- a/src/gui/npcdialog.cpp
+++ b/src/gui/npcdialog.cpp
@@ -75,12 +75,12 @@ NpcDialog::NpcDialog(const int npcId) :
mItemLinkHandler(new ItemLinkHandler),
mTextField(new TextField("")),
mIntField(new IntTextField),
- mPlusButton(new Button(_("+"), "inc", this)),
- mMinusButton(new Button(_("-"), "dec", this)),
- mClearButton(new Button(_("Clear"), "clear", this)),
- mButton(new Button("", "ok", this)),
- mButton2(new Button(_("Close"), "close", this)),
- mResetButton(new Button(_("Reset"), "reset", this)),
+ mPlusButton(new Button(this, _("+"), "inc", this)),
+ mMinusButton(new Button(this, _("-"), "dec", this)),
+ mClearButton(new Button(this, _("Clear"), "clear", this)),
+ mButton(new Button(this, "", "ok", this)),
+ mButton2(new Button(this, _("Close"), "close", this)),
+ mResetButton(new Button(this, _("Reset"), "reset", this)),
mInputState(NPC_INPUT_NONE),
mActionState(NPC_ACTION_WAIT),
mLastNextTime(0),