fixes MSW comparision where theme name extracted from the environment is in upper case

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2002-06-14 14:17:29 +00:00
parent df77251d93
commit b8d5d8b832

View File

@@ -64,7 +64,7 @@ wxThemeInfo::wxThemeInfo(Constructor c,
wxThemeInfo *info = ms_allThemes;
while ( info )
{
if ( name == info->name )
if ( name.CmpNoCase(info->name) == 0 )
{
return info->ctor();
}