summaryrefslogtreecommitdiff
path: root/src/gui/widgets/popuplist.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-24 01:21:54 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-24 01:21:54 +0300
commitd8abec8cfce526f9b4779b674b172514100d01a2 (patch)
tree305c62d9503a1a508044883bcd336ea07d3c17f8 /src/gui/widgets/popuplist.cpp
parentb717426195ce73de9a70412a1e40fb01898264ae (diff)
downloadManaVerse-d8abec8cfce526f9b4779b674b172514100d01a2.tar.gz
ManaVerse-d8abec8cfce526f9b4779b674b172514100d01a2.tar.bz2
ManaVerse-d8abec8cfce526f9b4779b674b172514100d01a2.tar.xz
ManaVerse-d8abec8cfce526f9b4779b674b172514100d01a2.zip
Remove default parameters from scrollarea.
Diffstat (limited to 'src/gui/widgets/popuplist.cpp')
-rw-r--r--src/gui/widgets/popuplist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/popuplist.cpp b/src/gui/widgets/popuplist.cpp
index 0260945ce..2a1dd95c7 100644
--- a/src/gui/widgets/popuplist.cpp
+++ b/src/gui/widgets/popuplist.cpp
@@ -42,7 +42,7 @@ PopupList::PopupList(DropDown *const widget,
widget, listModel, "extendedlistbox.xml", 0) :
CREATEWIDGETR(ListBox,
widget, listModel, "popuplistbox.xml")),
- mScrollArea(new ScrollArea(this, mListBox, Opaque_false)),
+ mScrollArea(new ScrollArea(this, mListBox, Opaque_false, std::string())),
mDropDown(widget),
mPressedIndex(-2),
mModal(modal)