fixed MSVC6 warning

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29438 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Dimitri Schoolwerth
2004-09-27 10:25:41 +00:00
parent 1320281c89
commit c1ce7c1988

View File

@@ -1,4 +1,4 @@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: common/fontcmn.cpp
// Purpose: implementation of wxFontBase methods
// Author: Vadim Zeitlin
@@ -57,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;