diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-22 04:11:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-22 04:11:24 +0300 |
commit | 98ed087de210f5a5a0979b0d60b6d4b21b24ba4c (patch) | |
tree | cff4b8c1a911ffb0acfde24f1bdd0fb25a25327b /src/gui/windows | |
parent | c58b6c63c89e18a9feef819f584426d329ff38ac (diff) | |
download | plus-98ed087de210f5a5a0979b0d60b6d4b21b24ba4c.tar.gz plus-98ed087de210f5a5a0979b0d60b6d4b21b24ba4c.tar.bz2 plus-98ed087de210f5a5a0979b0d60b6d4b21b24ba4c.tar.xz plus-98ed087de210f5a5a0979b0d60b6d4b21b24ba4c.zip |
Remove default parameters from confirmdialog.h
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/confirmdialog.h | 8 | ||||
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 3 | ||||
-rw-r--r-- | src/gui/windows/logindialog.cpp | 3 | ||||
-rw-r--r-- | src/gui/windows/npcselldialog.cpp | 3 | ||||
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 4 |
5 files changed, 13 insertions, 8 deletions
diff --git a/src/gui/windows/confirmdialog.h b/src/gui/windows/confirmdialog.h index 5d828eafb..52877bfc6 100644 --- a/src/gui/windows/confirmdialog.h +++ b/src/gui/windows/confirmdialog.h @@ -49,10 +49,10 @@ class ConfirmDialog notfinal : public Window, */ ConfirmDialog(const std::string &restrict title, const std::string &restrict msg, - const std::string &restrict soundEvent = SOUND_REQUEST, - const bool ignore = false, - const Modal modal = Modal_false, - Window *const parent = nullptr); + const std::string &restrict soundEvent, + const bool ignore, + const Modal modal, + Window *const parent); A_DELETE_COPY(ConfirmDialog) diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index f973f250f..aca7c583a 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -1047,7 +1047,8 @@ void InventoryWindow::combineItems(const int index1, item2->getName().c_str()), SOUND_REQUEST, false, - Modal_true); + Modal_true, + nullptr); insertCardListener.itemIndex = item2->getInvIndex(); insertCardListener.cardIndex = item1->getInvIndex(); confirmDlg->addActionListener(&insertCardListener); diff --git a/src/gui/windows/logindialog.cpp b/src/gui/windows/logindialog.cpp index 21af69b91..1ae102b42 100644 --- a/src/gui/windows/logindialog.cpp +++ b/src/gui/windows/logindialog.cpp @@ -250,7 +250,8 @@ void LoginDialog::action(const ActionEvent &event) url, SOUND_REQUEST, false, - Modal_true); + Modal_true, + nullptr); confirmDlg->addActionListener(&urlListener); } } diff --git a/src/gui/windows/npcselldialog.cpp b/src/gui/windows/npcselldialog.cpp index c00edda6c..be25680fe 100644 --- a/src/gui/windows/npcselldialog.cpp +++ b/src/gui/windows/npcselldialog.cpp @@ -76,7 +76,8 @@ void NpcSellDialog::sellAction(const ActionEvent &event) info.getName().c_str()), SOUND_REQUEST, false, - Modal_true); + Modal_true, + nullptr); dialog->addActionListener(this); return; } diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index 0e55bcca1..b044831ff 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -1026,7 +1026,9 @@ void ShopWindow::processRequest(const std::string &nick, _("Request for Trade"), msg, SOUND_REQUEST, - true); + true, + Modal_false, + nullptr); confirmDlg->addActionListener(this); } } |