diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-18 21:26:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-18 21:26:04 +0300 |
commit | e21479ccc48ed8383a6ab72f45c43e12e8dffa69 (patch) | |
tree | 2882139edd93b0e3ae72fc541b366ed7246e46b2 /src/gui/windows/okdialog.h | |
parent | 506a064c94e44d4f896fa9b2dc74d30e7f7f8c33 (diff) | |
download | plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.tar.gz plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.tar.bz2 plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.tar.xz plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.zip |
Remove default values from okdialog constructor.
Diffstat (limited to 'src/gui/windows/okdialog.h')
-rw-r--r-- | src/gui/windows/okdialog.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/windows/okdialog.h b/src/gui/windows/okdialog.h index 5017207cd..9db759937 100644 --- a/src/gui/windows/okdialog.h +++ b/src/gui/windows/okdialog.h @@ -49,11 +49,11 @@ class OkDialog final : public Window, */ OkDialog(const std::string &restrict title, const std::string &restrict msg, - const int soundEvent = DialogType::OK, - const bool modal = true, - const bool showCenter = true, - Window *const parent = nullptr, - const int minWidth = 260); + const int soundEvent, + const bool modal, + const bool showCenter, + Window *const parent, + const int minWidth); A_DELETE_COPY(OkDialog) |