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 7a3b92064..13de9c440 100644 --- a/src/gui/buyselldialog.cpp +++ b/src/gui/buyselldialog.cpp @@ -75,7 +75,7 @@ void BuySellDialog::init() int x = buttonPadding; const int y = buttonPadding; - for (const char **curBtn = buttonNames; *curBtn; curBtn++) + for (const char *const *curBtn = buttonNames; *curBtn; curBtn++) { Button *const btn = new Button(this, gettext(*curBtn), *curBtn, this); if (!mBuyButton) |