]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/gaugemsw.cpp
changed #ifdef wxUSE_XXX into #if wxUSE_XXX
[wxWidgets.git] / src / msw / gaugemsw.cpp
index 0c33ec4dda3bfcb1ef397ed162f969a6902dc9e8..f2d9d22743b5790cb59a660c3bfed2df9a0389da 100644 (file)
@@ -22,6 +22,7 @@
 
 #ifndef WX_PRECOMP
 #include "wx/defs.h"
+#include "wx/utils.h"
 #endif
 
 #if wxUSE_GAUGE 
@@ -128,7 +129,7 @@ bool wxGaugeMSW::Create(wxWindow *parent, wxWindowID id,
   SendMessage((HWND) GetHWND(), ZYZG_SETFGCOLOR, 0, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
   SendMessage((HWND) GetHWND(), ZYZG_SETBKCOLOR, 0, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
 
-  SetFont(parent->GetFont());
+  SetFont(parent->GetFont());
 
   if (width == -1)
     width = 50;