]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontcmn.cpp
Update OpenVMS compile support (problem cairo logical)
[wxWidgets.git] / src / common / fontcmn.cpp
index 5ac8cce15e6eb60094e002b139301d9b847b2525..b2b7e2c1080de23e8de56e11c3900c404f06a12e 100644 (file)
@@ -55,7 +55,6 @@
 
 static void AdjustFontSize(wxFont& font, wxDC& dc, const wxSize& pixelSize)
 {
-    int currentSize = 0;
     int largestGood = 0;
     int smallestBad = 0;
 
@@ -64,7 +63,7 @@ static void AdjustFontSize(wxFont& font, wxDC& dc, const wxSize& pixelSize)
 
     // NB: this assignment was separated from the variable definition
     // in order to fix a gcc v3.3.3 compiler crash
-    currentSize = font.GetPointSize();
+    int currentSize = font.GetPointSize();
     while (currentSize > 0)
     {
         dc.SetFont(font);