diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-05 19:09:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-05 19:09:02 +0300 |
commit | 92c019dad798f1a84c5d3e8e8331a885f6458133 (patch) | |
tree | 078d58c3b78ed37d23e7292460f4443f5ef799dd /src/gui/widgets/dropdown.h | |
parent | e6d251345a48108495d39d82b0ec79deac63d86d (diff) | |
download | plus-92c019dad798f1a84c5d3e8e8331a885f6458133.tar.gz plus-92c019dad798f1a84c5d3e8e8331a885f6458133.tar.bz2 plus-92c019dad798f1a84c5d3e8e8331a885f6458133.tar.xz plus-92c019dad798f1a84c5d3e8e8331a885f6458133.zip |
Add to left classes stong typed Modal enum.
Diffstat (limited to 'src/gui/widgets/dropdown.h')
-rw-r--r-- | src/gui/widgets/dropdown.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h index ee1fc2789..391a49873 100644 --- a/src/gui/widgets/dropdown.h +++ b/src/gui/widgets/dropdown.h @@ -23,6 +23,8 @@ #ifndef GUI_WIDGETS_DROPDOWN_H #define GUI_WIDGETS_DROPDOWN_H +#include "enums/simpletypes.h" + #include "gui/widgets/basiccontainer.h" #include "listeners/actionlistener.h" @@ -64,7 +66,7 @@ class DropDown final : public ActionListener, DropDown(const Widget2 *const widget, ListModel *const listModel, const bool extended = false, - const bool modal = false, + const Modal modal = Modal_false, ActionListener *const listener = nullptr, const std::string &eventId = ""); |