diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/playerbox.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/playerbox.h b/src/gui/widgets/playerbox.h index 1f627a7a0..5b53d4b96 100644 --- a/src/gui/widgets/playerbox.h +++ b/src/gui/widgets/playerbox.h @@ -45,11 +45,11 @@ class PlayerBox final : public Widget2, * Constructor. Takes the initial player character that this box should * display, which defaults to <code>NULL</code>. */ - PlayerBox(Being *const being, const std::string &skin = "", - const std::string &selectedSkin = ""); + explicit PlayerBox(Being *const being, const std::string &skin = "", + const std::string &selectedSkin = ""); - PlayerBox(const std::string &skin = "", - const std::string &selectedSkin = ""); + explicit PlayerBox(const std::string &skin = "", + const std::string &selectedSkin = ""); A_DELETE_COPY(PlayerBox) |