Fixed a misplaced } that was causing the wrong encoding to be enumerated

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 1999-11-06 08:03:56 +00:00
parent 82c87ed37c
commit 024fb9b98a

View File

@ -103,10 +103,9 @@ bool wxFontEnumeratorHelper::SetEncoding(wxFontEncoding encoding)
// no such encodings at all
return FALSE;
}
m_charset = info.charset;
m_facename = info.facename;
}
m_charset = info.charset;
m_facename = info.facename;
return TRUE;
}