remove limit on unicode table when searching for fonts

svn: r1531
This commit is contained in:
Matthew Flatt 2005-12-05 21:32:11 +00:00
parent e6c79bf796
commit be96f9c22b

View File

@ -171,7 +171,7 @@ static int glyph_exists_in_selected_font(HDC hdc, int c)
if (wxGetFontUnicodeRanges) {
DWORD sz;
sz = wxGetFontUnicodeRanges(hdc, NULL);
if (sz && (sz < 4096)) {
if (sz) {
wxGLYPHSET *gs;
char *bytes;
int i;