]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/gauge.cpp
Warning fixes.
[wxWidgets.git] / src / mac / carbon / gauge.cpp
index bfdbe410dce810c2949f8b9908ae499f54ebb75d..6e9ed032f27f81b6f2784441c3447a22aa29341c 100644 (file)
@@ -15,6 +15,8 @@
 
 #include "wx/gauge.h"
 
+#if wxUSE_GAUGE 
+
 #if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl)
 #endif
@@ -35,16 +37,16 @@ bool wxGauge::Create(wxWindow *parent, wxWindowID id,
         return false;
 
     wxSize size = s ;
-
-    if ( size.x == wxDefaultSize.x && size.y == wxDefaultSize.y)
+    /*
+    if ( size.x == wxDefaultCoord && size.y == wxDefaultCoord)
     {
         size = wxSize( 200 , 16 ) ;
     }
-    
+    */
     Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
     m_peer = new wxMacControl() ;
     verify_noerr ( CreateProgressBarControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , 
-     GetValue() , 0 , GetRange() , false /* not indeterminate */ , *m_peer ) );
+     GetValue() , 0 , GetRange() , false /* not indeterminate */ , m_peer->GetControlRefAddr() ) );
     
        
     MacPostControlCreate(pos,size) ;
@@ -79,3 +81,5 @@ int wxGauge::GetValue() const
     return m_gaugePos ;
 }
 
+#endif // wxUSE_GAUGE 
+