X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/524c47aa3adf2af11a3069fd5da035a604f08f66..baac715443ebb90983c07cd1d29640a0b6410c53:/src/osx/carbon/gauge.cpp diff --git a/src/osx/carbon/gauge.cpp b/src/osx/carbon/gauge.cpp index 5a63c43507..9a74a41a7c 100644 --- a/src/osx/carbon/gauge.cpp +++ b/src/osx/carbon/gauge.cpp @@ -23,7 +23,7 @@ public : wxMacGaugeCarbonControl( wxWindowMac* peer ) : wxMacControl( peer ) { } - + void SetMaximum(wxInt32 v) { // switch back to determinate mode if not there already @@ -34,7 +34,7 @@ public : wxMacControl::SetMaximum( v ) ; } - + void SetValue(wxInt32 v) { // switch back to determinate mode if not there already @@ -54,7 +54,7 @@ public : SetNeedsDisplay(NULL) ; } } - + void PulseGauge() { if ( GetData( kControlNoPart, kControlProgressBarIndeterminateTag ) != true ) @@ -70,16 +70,16 @@ public : }; -wxWidgetImplType* wxWidgetImpl::CreateGauge( wxWindowMac* wxpeer, - wxWindowMac* parent, - wxWindowID id, +wxWidgetImplType* wxWidgetImpl::CreateGauge( wxWindowMac* wxpeer, + wxWindowMac* parent, + wxWindowID WXUNUSED(id), wxInt32 value, wxInt32 minimum, wxInt32 maximum, - const wxPoint& pos, + const wxPoint& pos, const wxSize& size, - long style, - long extraStyle) + long WXUNUSED(style), + long WXUNUSED(extraStyle)) { Rect bounds = wxMacGetBoundsForControl( wxpeer, pos, size ); wxMacGaugeCarbonControl* peer = new wxMacGaugeCarbonControl( wxpeer );