X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544229d1069a20ca4c81fac6059aa4d92d8559ef..02a525b385836d41f63e3bbebec869c7b8249026:/src/common/fontcmn.cpp diff --git a/src/common/fontcmn.cpp b/src/common/fontcmn.cpp index cb10a1772d..dd3544a26b 100644 --- a/src/common/fontcmn.cpp +++ b/src/common/fontcmn.cpp @@ -1,4 +1,4 @@ -///////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////// // Name: common/fontcmn.cpp // Purpose: implementation of wxFontBase methods // Author: Vadim Zeitlin @@ -29,8 +29,9 @@ #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" @@ -56,8 +57,8 @@ static void AdjustFontSize(wxFont font, wxDC& dc, const wxSize& pixelSize) { int currentSize = font.GetPointSize(); - int largestGood; - int smallestBad; + int largestGood wxDUMMY_INITIALIZE(0); + int smallestBad wxDUMMY_INITIALIZE(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 }