diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-24 04:42:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-24 04:42:20 +0300 |
commit | 35d796b927447760772d2720a221e21fdf9fd10e (patch) | |
tree | 5981066559c9917f44c31577f52a19187f0bd339 /src/gui/widgets | |
parent | 07abefc34abc3731f5eb63a7616231827b11e271 (diff) | |
download | manaplus-35d796b927447760772d2720a221e21fdf9fd10e.tar.gz manaplus-35d796b927447760772d2720a221e21fdf9fd10e.tar.bz2 manaplus-35d796b927447760772d2720a221e21fdf9fd10e.tar.xz manaplus-35d796b927447760772d2720a221e21fdf9fd10e.zip |
Remove default parameters from icon.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/icon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/icon.h b/src/gui/widgets/icon.h index f0849d505..8d7bdc13e 100644 --- a/src/gui/widgets/icon.h +++ b/src/gui/widgets/icon.h @@ -44,14 +44,14 @@ class Icon final : public Widget */ Icon(const Widget2 *const widget, const std::string &filename, - const AutoRelease autoRelease = AutoRelease_false); + const AutoRelease autoRelease); /** * Constructor, uses an existing Image. */ Icon(const Widget2 *const widget, Image *const image, - const AutoRelease autoRelease = AutoRelease_false); + const AutoRelease autoRelease); A_DELETE_COPY(Icon) |