diff options
Diffstat (limited to 'src/gui/buyselldialog.cpp')
-rw-r--r-- | src/gui/buyselldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/buyselldialog.cpp b/src/gui/buyselldialog.cpp index f0f65fb94..121f3d3c8 100644 --- a/src/gui/buyselldialog.cpp +++ b/src/gui/buyselldialog.cpp @@ -70,7 +70,7 @@ void BuySellDialog::init() for (const char **curBtn = buttonNames; *curBtn; curBtn++) { - Button *const btn = new Button(gettext(*curBtn), *curBtn, this); + Button *const btn = new Button(this, gettext(*curBtn), *curBtn, this); if (!mBuyButton) mBuyButton = btn; // For focus request btn->setPosition(x, y); |