diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 01:09:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:19 +0300 |
commit | 743ad72a8e89cc179cc487bdb31ee81c4a80ddd5 (patch) | |
tree | 1f68e49bf040fe86166076e589faa3f05e45ef97 /src | |
parent | 786246efd8eb2116e1c36151018feec2b55ef73a (diff) | |
download | plus-743ad72a8e89cc179cc487bdb31ee81c4a80ddd5.tar.gz plus-743ad72a8e89cc179cc487bdb31ee81c4a80ddd5.tar.bz2 plus-743ad72a8e89cc179cc487bdb31ee81c4a80ddd5.tar.xz plus-743ad72a8e89cc179cc487bdb31ee81c4a80ddd5.zip |
In dropdown second constuctor now dont have default value.
This mean cant be implicit conversions to dropdown from Widget2.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/dropdown.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h index dc9c169d2..b666c90d2 100644 --- a/src/gui/widgets/dropdown.h +++ b/src/gui/widgets/dropdown.h @@ -67,7 +67,7 @@ class DropDown final : public gcn::ActionListener, * @see ListModel, ScrollArea, ListBox. */ DropDown(const Widget2 *const widget, - gcn::ListModel *const listModel = nullptr, + gcn::ListModel *const listModel, bool extended = false, bool modal = false, gcn::ActionListener *const listener = nullptr, |