summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-24 02:07:57 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-24 02:07:57 +0300
commit4e3cd287c2761247a58efbbc748df40482580414 (patch)
tree5a318deae6b2c9149d0332290f8ccc23cfec4b5f
parentd8abec8cfce526f9b4779b674b172514100d01a2 (diff)
downloadplus-4e3cd287c2761247a58efbbc748df40482580414.tar.gz
plus-4e3cd287c2761247a58efbbc748df40482580414.tar.bz2
plus-4e3cd287c2761247a58efbbc748df40482580414.tar.xz
plus-4e3cd287c2761247a58efbbc748df40482580414.zip
Remove default parameters from popup.
-rw-r--r--src/gui/widgets/popup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/popup.h b/src/gui/widgets/popup.h
index 92fbaf78a..085923d0e 100644
--- a/src/gui/widgets/popup.h
+++ b/src/gui/widgets/popup.h
@@ -58,8 +58,8 @@ class Popup notfinal : public Container,
* debugging purposes.
* @param skin The location where the Popup's skin XML can be found.
*/
- explicit Popup(const std::string &name = "",
- std::string skin = "");
+ Popup(const std::string &name,
+ std::string skin);
A_DELETE_COPY(Popup)