X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544229d1069a20ca4c81fac6059aa4d92d8559ef..18c509fb88b029169eb1b1b6a2c9ff852b7c7f84:/src/common/fontcmn.cpp diff --git a/src/common/fontcmn.cpp b/src/common/fontcmn.cpp index cb10a1772d..dcb846f6f5 100644 --- a/src/common/fontcmn.cpp +++ b/src/common/fontcmn.cpp @@ -29,13 +29,14 @@ #endif #ifndef WX_PRECOMP -#include "wx/font.h" -#include "wx/intl.h" + #include "wx/font.h" + #include "wx/intl.h" + #include "wx/dcscreen.h" #endif // WX_PRECOMP #include "wx/gdicmn.h" -#if defined(__WXMSW__) +#if defined(__WXMSW__) && !defined(__PALMOS__) #include "wx/msw/private.h" // includes windows.h for LOGFONT #include "wx/msw/winundef.h" #endif @@ -53,11 +54,11 @@ // helper functions // ---------------------------------------------------------------------------- -static void AdjustFontSize(wxFont font, wxDC& dc, const wxSize& pixelSize) +static void AdjustFontSize(wxFont& font, wxDC& dc, const wxSize& pixelSize) { int currentSize = font.GetPointSize(); - int largestGood; - int smallestBad; + int largestGood = 0; + int smallestBad = 0; bool initialGoodFound = false; bool initialBadFound = false; @@ -185,10 +186,10 @@ wxFont *wxFontBase::New(const wxSize& pixelSize, return new wxFont(pixelSize, family, style, weight, underlined, face, encoding); #else - wxFont * ret = New(10, family, style, weight, underlined, face, encoding); + wxFont *self = New(10, family, style, weight, underlined, face, encoding); wxScreenDC dc; - ret->AdjustFontSize(*(wxFont *)this, dc, pixelSize); - return ret; + AdjustFontSize(*(wxFont *)self, dc, pixelSize); + return self; #endif }