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:
Vadim Zeitlin
2009-02-04 14:40:47 +00:00
parent 52f2299cdd
commit c77c302300

View File

@@ -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: