oops, AdjustFontSize() had no effect; fixed (patch 1037952)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-10-03 13:38:22 +00:00
parent 6d067eb66a
commit 8093538cc5

View File

@@ -54,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 wxDUMMY_INITIALIZE(0);
int smallestBad wxDUMMY_INITIALIZE(0);
int largestGood = 0;
int smallestBad = 0;
bool initialGoodFound = false;
bool initialBadFound = false;