]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/gauge95.cpp
Added ToogleTool from Markus
[wxWidgets.git] / src / msw / gauge95.cpp
index 7fbe861c1d4a418b991b460b0a4255d0094f0658..d0ddf67099cf00ac5072b8c1fd02ab3e37b13475 100644 (file)
@@ -50,6 +50,7 @@ bool wxGauge95::Create(wxWindow *parent, wxWindowID id,
 
   if (parent) parent->AddChild(this);
   m_rangeMax = range;
+  m_gaugePos = 0;
 
   SetBackgroundColour(parent->GetDefaultBackgroundColour()) ;
   SetForegroundColour(parent->GetDefaultForegroundColour()) ;
@@ -107,6 +108,8 @@ void wxGauge95::SetSize(int x, int y, int width, int height, int sizeFlags)
   if (y == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
     y1 = currentY;
 
+  AdjustForParentClientOrigin(x1, y1, sizeFlags);
+
   // If we're prepared to use the existing size, then...
   if (width == -1 && height == -1 && ((sizeFlags & wxSIZE_AUTO) != wxSIZE_AUTO))
   {