compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4016 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-10-15 23:04:24 +00:00
parent 409c9842c7
commit 1bb27b0cc6

View File

@ -55,9 +55,9 @@ wxHtmlWinParser::wxHtmlWinParser(wxWindow *wnd) : wxHtmlParser()
for (m = 0; m < 7; m++) for (m = 0; m < 7; m++)
m_FontsTable[i][j][k][l][m] = NULL; m_FontsTable[i][j][k][l][m] = NULL;
#ifdef __WXMSW__ #ifdef __WXMSW__
int default_sizes[7] = {7, 8, 10, 12, 16, 22, 30}; static int default_sizes[7] = {7, 8, 10, 12, 16, 22, 30};
#else #else
int default_sizes[7] = {10, 12, 14, 16, 19, 24, 32}; static int default_sizes[7] = {10, 12, 14, 16, 19, 24, 32};
#endif #endif
SetFonts("", wxSLANT, "", wxSLANT, default_sizes); SetFonts("", wxSLANT, "", wxSLANT, default_sizes);
} }