unused params warnings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35843 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -116,7 +116,9 @@ wxComboBox::~wxComboBox()
|
||||
m_clientDataDict.DestroyData();
|
||||
}
|
||||
|
||||
void wxComboBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
|
||||
void wxComboBox::DoSetSize(int x, int y,
|
||||
int width, int WXUNUSED(height),
|
||||
int sizeFlags)
|
||||
{
|
||||
// Necessary so it doesn't call wxChoice::SetSize
|
||||
wxWindow::DoSetSize(x, y, width, DoGetBestSize().y, sizeFlags);
|
||||
@@ -144,7 +146,7 @@ void wxComboBox::SetValue(const wxString& value)
|
||||
m_inSetValue = false;
|
||||
}
|
||||
|
||||
void wxComboBox::SetString(int n, const wxString& s)
|
||||
void wxComboBox::SetString(int WXUNUSED(n), const wxString& WXUNUSED(s))
|
||||
{
|
||||
wxFAIL_MSG( wxT("wxComboBox::SetString only implemented for Motif 2.0") );
|
||||
}
|
||||
@@ -222,7 +224,7 @@ wxString wxComboBox::GetString(int n) const
|
||||
return wxEmptyString;
|
||||
}
|
||||
|
||||
int wxComboBox::FindString(const wxString& s, bool bCase) const
|
||||
int wxComboBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const
|
||||
{
|
||||
// FIXME: back to base class for not supported value of bCase
|
||||
|
||||
|
Reference in New Issue
Block a user