compilation fix for switch(wxChar)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-03-19 01:38:37 +00:00
parent 8b34b16301
commit 102798af35

View File

@@ -642,7 +642,7 @@ wxFontStyle wxNativeFontInfo::GetStyle() const
return wxFONTSTYLE_NORMAL;
}
switch ( s[0] )
switch ( s[0].GetValue() )
{
default:
// again, unknown but consider normal by default