diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 01:40:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 01:40:21 +0300 |
commit | 71e06c926c4abc34052a3e2073db609d8e63e22c (patch) | |
tree | 683045ff5602eb520a7e8dfa1ad50867ad0db2e5 /src/gui/windows | |
parent | 86487ca386118d3a06c029c00ad7f75767c3c719 (diff) | |
download | plus-71e06c926c4abc34052a3e2073db609d8e63e22c.tar.gz plus-71e06c926c4abc34052a3e2073db609d8e63e22c.tar.bz2 plus-71e06c926c4abc34052a3e2073db609d8e63e22c.tar.xz plus-71e06c926c4abc34052a3e2073db609d8e63e22c.zip |
Remove default parameters from editdialog.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/charselectdialog.cpp | 10 | ||||
-rw-r--r-- | src/gui/windows/editdialog.h | 7 | ||||
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 5 |
3 files changed, 16 insertions, 6 deletions
diff --git a/src/gui/windows/charselectdialog.cpp b/src/gui/windows/charselectdialog.cpp index fb759eb96..a8da297cb 100644 --- a/src/gui/windows/charselectdialog.cpp +++ b/src/gui/windows/charselectdialog.cpp @@ -177,7 +177,10 @@ void CharSelectDialog::postInit() // TRANSLATORS: pin code dialog header. _("Please set new pincode"), "", - "OK"); + "OK", + 300, + nullptr, + Modal_true); dialog->addActionListener(&pincodeListener); } } @@ -227,7 +230,10 @@ void CharSelectDialog::action(const ActionEvent &event) // TRANSLATORS: character rename dialog header. _("Please enter new name"), player->getName(), - "OK"); + "OK", + 300, + nullptr, + Modal_true); charRenameListener.setId(player->getId()); charRenameListener.setDialog(dialog); dialog->addActionListener(&charRenameListener); diff --git a/src/gui/windows/editdialog.h b/src/gui/windows/editdialog.h index cea7d6f78..6bfad4f55 100644 --- a/src/gui/windows/editdialog.h +++ b/src/gui/windows/editdialog.h @@ -48,9 +48,10 @@ class EditDialog final : public Window, */ EditDialog(const std::string &restrict title, const std::string &restrict msg, - const std::string &restrict eventOk = ACTION_EDIT_OK, - const int width = 300, Window *const parent = nullptr, - const Modal modal = Modal_true); + const std::string &restrict eventOk, + const int width, + Window *const parent, + const Modal modal); A_DELETE_COPY(EditDialog) diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index b044831ff..757ffd902 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -372,7 +372,10 @@ void ShopWindow::action(const ActionEvent &event) // TRANSLATORS: shop rename dialog title _("Please enter new shop name"), mSellShopName, - "OK"); + "OK", + 300, + nullptr, + Modal_true); shopRenameListener.setDialog(dialog); dialog->addActionListener(&shopRenameListener); } |