fixing warnings in osx common code

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59776 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2009-03-23 15:17:22 +00:00
parent 530cda2fdc
commit 0faf03bf97
12 changed files with 16 additions and 16 deletions

View File

@@ -66,13 +66,13 @@ wxWindow *wxButton::SetDefault()
return btnOldDefault; return btnOldDefault;
} }
void wxButton::Command (wxCommandEvent & event) void wxButton::Command (wxCommandEvent & WXUNUSED(event))
{ {
m_peer->PerformClick() ; m_peer->PerformClick() ;
// ProcessCommand(event); // ProcessCommand(event);
} }
bool wxButton::OSXHandleClicked( double timestampsec ) bool wxButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId); wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId);
event.SetEventObject(this); event.SetEventObject(this);
@@ -111,7 +111,7 @@ bool wxDisclosureTriangle::IsOpen() const
return m_peer->GetValue() == 1; return m_peer->GetValue() == 1;
} }
bool wxDisclosureTriangle::OSXHandleClicked( double timestampsec ) bool wxDisclosureTriangle::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
// Just emit button event for now // Just emit button event for now
wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId); wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, m_windowId);

View File

@@ -80,7 +80,7 @@ void wxCheckBox::DoSet3StateValue(wxCheckBoxState val)
m_peer->SetValue( val ) ; m_peer->SetValue( val ) ;
} }
bool wxCheckBox::OSXHandleClicked( double timestampsec ) bool wxCheckBox::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
bool sendEvent = true; bool sendEvent = true;
wxCheckBoxState newState = Get3StateValue(); wxCheckBoxState newState = Get3StateValue();

View File

@@ -230,7 +230,7 @@ void * wxChoice::DoGetItemClientData(unsigned int n) const
return (void *)m_datas[n]; return (void *)m_datas[n];
} }
bool wxChoice::OSXHandleClicked( double timestampsec ) bool wxChoice::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
wxCommandEvent event( wxEVT_COMMAND_CHOICE_SELECTED, m_windowId ); wxCommandEvent event( wxEVT_COMMAND_CHOICE_SELECTED, m_windowId );

View File

@@ -215,7 +215,7 @@ void wxListBox::GetValueCallback( unsigned int n, wxListWidgetColumn* col , wxLi
value.Set( GetString( n ) ); value.Set( GetString( n ) );
} }
void wxListBox::SetValueCallback( unsigned int n, wxListWidgetColumn* col , wxListWidgetCellValue& value ) void wxListBox::SetValueCallback( unsigned int WXUNUSED(n), wxListWidgetColumn* WXUNUSED(col) , wxListWidgetCellValue& WXUNUSED(value) )
{ {
} }

View File

@@ -245,7 +245,7 @@ void wxNonOwnedWindow::HandleResized( double timestampsec )
wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
} }
void wxNonOwnedWindow::HandleResizing( double timestampsec, wxRect* rect ) void wxNonOwnedWindow::HandleResizing( double WXUNUSED(timestampsec), wxRect* rect )
{ {
wxRect r = *rect ; wxRect r = *rect ;

View File

@@ -282,7 +282,7 @@ bool wxNotebook::InsertPage(size_t nPage,
return true; return true;
} }
int wxNotebook::HitTest(const wxPoint& pt, long * flags) const int wxNotebook::HitTest(const wxPoint& WXUNUSED(pt), long * WXUNUSED(flags)) const
{ {
int resultV = wxNOT_FOUND; int resultV = wxNOT_FOUND;
#if 0 #if 0
@@ -510,7 +510,7 @@ void wxNotebook::ChangePage(int nOldSel, int nSel)
m_peer->SetValue( m_nSelection + 1 ) ; m_peer->SetValue( m_nSelection + 1 ) ;
} }
bool wxNotebook::OSXHandleClicked( double timestampsec ) bool wxNotebook::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
bool status = false ; bool status = false ;

View File

@@ -106,7 +106,7 @@ void wxRadioButton::Command(wxCommandEvent& event)
ProcessCommand( event ); ProcessCommand( event );
} }
bool wxRadioButton::OSXHandleClicked( double timestampsec ) bool wxRadioButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
if ( !m_peer->ButtonClickDidStateChange() ) if ( !m_peer->ButtonClickDidStateChange() )
{ {

View File

@@ -83,7 +83,7 @@ void wxScrollBar::Command( wxCommandEvent& event )
ProcessCommand( event ); ProcessCommand( event );
} }
bool wxScrollBar::OSXHandleClicked( double timestampsec ) bool wxScrollBar::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
int new_pos = m_peer->GetValue(); int new_pos = m_peer->GetValue();

View File

@@ -296,7 +296,7 @@ void wxSlider::TriggerScrollEvent( wxEventType scrollEvent)
HandleWindowEvent( cevent ); HandleWindowEvent( cevent );
} }
bool wxSlider::OSXHandleClicked( double timestampsec ) bool wxSlider::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
TriggerScrollEvent(wxEVT_SCROLL_THUMBRELEASE); TriggerScrollEvent(wxEVT_SCROLL_THUMBRELEASE);

View File

@@ -79,7 +79,7 @@ void wxSpinButton::SendThumbTrackEvent()
HandleWindowEvent( event ); HandleWindowEvent( event );
} }
bool wxSpinButton::OSXHandleClicked( double timestampsec ) bool wxSpinButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
// all events have already been processed // all events have already been processed
return true; return true;

View File

@@ -89,7 +89,7 @@ void wxToggleButton::Command(wxCommandEvent & event)
ProcessCommand(event); ProcessCommand(event);
} }
bool wxToggleButton::OSXHandleClicked( double timestampsec ) bool wxToggleButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId); wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
event.SetInt(GetValue()); event.SetInt(GetValue());
@@ -156,7 +156,7 @@ void wxBitmapToggleButton::Command(wxCommandEvent & event)
ProcessCommand(event); ProcessCommand(event);
} }
bool wxBitmapToggleButton::OSXHandleClicked( double timestampsec ) bool wxBitmapToggleButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId); wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, m_windowId);
event.SetInt(GetValue()); event.SetInt(GetValue());

View File

@@ -2158,7 +2158,7 @@ Rect wxMacGetBoundsForControl( wxWindowMac* window , const wxPoint& pos , const
return bounds ; return bounds ;
} }
bool wxWindowMac::OSXHandleClicked( double timestampsec ) bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec) )
{ {
return false; return false;
} }