diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-24 02:07:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-24 02:07:57 +0300 |
commit | 4e3cd287c2761247a58efbbc748df40482580414 (patch) | |
tree | 5a318deae6b2c9149d0332290f8ccc23cfec4b5f /src/gui/widgets | |
parent | d8abec8cfce526f9b4779b674b172514100d01a2 (diff) | |
download | mv-4e3cd287c2761247a58efbbc748df40482580414.tar.gz mv-4e3cd287c2761247a58efbbc748df40482580414.tar.bz2 mv-4e3cd287c2761247a58efbbc748df40482580414.tar.xz mv-4e3cd287c2761247a58efbbc748df40482580414.zip |
Remove default parameters from popup.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/popup.h | 4 |
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) |