From be96f9c22b5a99810530fc44f29059899bd8be4a Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 5 Dec 2005 21:32:11 +0000 Subject: [PATCH] remove limit on unicode table when searching for fonts svn: r1531 --- src/wxwindow/src/msw/wx_gdi.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxwindow/src/msw/wx_gdi.cxx b/src/wxwindow/src/msw/wx_gdi.cxx index 8bb09638fc..ebf2684ea4 100644 --- a/src/wxwindow/src/msw/wx_gdi.cxx +++ b/src/wxwindow/src/msw/wx_gdi.cxx @@ -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;