mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed uint to bool conversion warning
This commit is contained in:
parent
25a9f70462
commit
08451bad7d
1 changed files with 3 additions and 3 deletions
|
@ -457,7 +457,7 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<bool> _FontOblique;
|
std::vector<bool> _FontOblique;
|
||||||
inline uint getFontOblique() const
|
inline bool getFontOblique() const
|
||||||
{
|
{
|
||||||
if (_FontOblique.empty())
|
if (_FontOblique.empty())
|
||||||
return false;
|
return false;
|
||||||
|
@ -465,7 +465,7 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<bool> _FontUnderlined;
|
std::vector<bool> _FontUnderlined;
|
||||||
inline uint getFontUnderlined() const
|
inline bool getFontUnderlined() const
|
||||||
{
|
{
|
||||||
if (_FontUnderlined.empty())
|
if (_FontUnderlined.empty())
|
||||||
return false;
|
return false;
|
||||||
|
@ -473,7 +473,7 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<bool> _FontStrikeThrough;
|
std::vector<bool> _FontStrikeThrough;
|
||||||
inline uint getFontStrikeThrough() const
|
inline bool getFontStrikeThrough() const
|
||||||
{
|
{
|
||||||
if (_FontStrikeThrough.empty())
|
if (_FontStrikeThrough.empty())
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue