X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/482ee3976f3008e44bd6352b990c8b7a99669754..d2c7015bf07982c3b9c3e8ca62b326e589f95e46:/src/common/gdicmn.cpp diff --git a/src/common/gdicmn.cpp b/src/common/gdicmn.cpp index c2e6de24c2..48925f3429 100644 --- a/src/common/gdicmn.cpp +++ b/src/common/gdicmn.cpp @@ -456,7 +456,6 @@ void wxInitializeStockObjects () #if defined(__WXMAC__) int sizeFont = 12; - FontFamilyID fontId ; Str255 fontName ; SInt16 fontSize ; Style fontStyle ; @@ -466,7 +465,7 @@ void wxInitializeStockObjects () p2cstrcpy( (char*) fontName , fontName ) ; wxSWISS_FONT = new wxFont (fontSize, wxSWISS, wxNORMAL, wxNORMAL , false , fontName ); #elif defined(__WXPM__) - static const int sizeFont = 10; + static const int sizeFont = 12; #else wxNORMAL_FONT = new wxFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); static const int sizeFont = wxNORMAL_FONT->GetPointSize(); @@ -478,7 +477,7 @@ void wxInitializeStockObjects () // as I can do to get something that looks halfway "wx" normal */ wxNORMAL_FONT = new wxFont (sizeFont, wxMODERN, wxNORMAL, wxBOLD); - wxSMALL_FONT = new wxFont (sizeFont - 2, wxSWISS, wxNORMAL, wxNORMAL); /* Helv */ + wxSMALL_FONT = new wxFont (sizeFont - 4, wxSWISS, wxNORMAL, wxNORMAL); /* Helv */ wxITALIC_FONT = new wxFont (sizeFont, wxROMAN, wxITALIC, wxNORMAL); wxSWISS_FONT = new wxFont (sizeFont, wxSWISS, wxNORMAL, wxNORMAL); /* Helv */ #elif defined(__WXMAC__)