diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-17 22:55:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-17 22:55:38 +0300 |
commit | 1276fff7557b881f90559d8c872861a2b4f8015a (patch) | |
tree | b14b2e9bbae8dc20cbd7fe8577b9285c49fc78bf /src/gui/windows/selldialog.cpp | |
parent | c8ec9f8058e21bfcf40e1cb19565e7a1cf67e9d4 (diff) | |
download | plus-1276fff7557b881f90559d8c872861a2b4f8015a.tar.gz plus-1276fff7557b881f90559d8c872861a2b4f8015a.tar.bz2 plus-1276fff7557b881f90559d8c872861a2b4f8015a.tar.xz plus-1276fff7557b881f90559d8c872861a2b4f8015a.zip |
add missing const into selldialog.
Diffstat (limited to 'src/gui/windows/selldialog.cpp')
-rw-r--r-- | src/gui/windows/selldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/selldialog.cpp b/src/gui/windows/selldialog.cpp index 727c94108..bded5bc24 100644 --- a/src/gui/windows/selldialog.cpp +++ b/src/gui/windows/selldialog.cpp @@ -60,7 +60,7 @@ SellDialog::SellDialog(const int npcId) : init(); } -SellDialog::SellDialog(std::string nick): +SellDialog::SellDialog(const std::string &nick): // TRANSLATORS: sell dialog name Window(_("Sell"), false, nullptr, "sell.xml"), gcn::ActionListener(), |