From b4e0b46ac9af6e31b24afb168fd6c87c2bd9fc3e Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 25 Apr 2015 18:28:03 +0200 Subject: [PATCH] Fixed uint to bool conversion warning --HG-- branch : develop --- code/nel/include/nel/gui/group_html.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/nel/include/nel/gui/group_html.h b/code/nel/include/nel/gui/group_html.h index f52132fad..98532abe4 100644 --- a/code/nel/include/nel/gui/group_html.h +++ b/code/nel/include/nel/gui/group_html.h @@ -457,7 +457,7 @@ namespace NLGUI } std::vector _FontOblique; - inline uint getFontOblique() const + inline bool getFontOblique() const { if (_FontOblique.empty()) return false; @@ -465,7 +465,7 @@ namespace NLGUI } std::vector _FontUnderlined; - inline uint getFontUnderlined() const + inline bool getFontUnderlined() const { if (_FontUnderlined.empty()) return false; @@ -473,7 +473,7 @@ namespace NLGUI } std::vector _FontStrikeThrough; - inline uint getFontStrikeThrough() const + inline bool getFontStrikeThrough() const { if (_FontStrikeThrough.empty()) return false;