fix MSVC warning about implicit int to bool conversion
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -78,7 +78,7 @@ public:
|
||||
inline wxArrayString& GetExcludes() { return m_excludes; }
|
||||
|
||||
bool HasFlag(wxTextValidatorStyle style) const
|
||||
{ return m_validatorStyle & style; }
|
||||
{ return (m_validatorStyle & style) != 0; }
|
||||
|
||||
protected:
|
||||
|
||||
|
Reference in New Issue
Block a user