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:
Vadim Zeitlin
2005-10-08 17:01:52 +00:00
parent 541c319a2d
commit a7bdad336c

View File

@@ -116,7 +116,9 @@ wxComboBox::~wxComboBox()
m_clientDataDict.DestroyData(); 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 // Necessary so it doesn't call wxChoice::SetSize
wxWindow::DoSetSize(x, y, width, DoGetBestSize().y, sizeFlags); wxWindow::DoSetSize(x, y, width, DoGetBestSize().y, sizeFlags);
@@ -144,7 +146,7 @@ void wxComboBox::SetValue(const wxString& value)
m_inSetValue = false; 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") ); wxFAIL_MSG( wxT("wxComboBox::SetString only implemented for Motif 2.0") );
} }
@@ -222,7 +224,7 @@ wxString wxComboBox::GetString(int n) const
return wxEmptyString; 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 // FIXME: back to base class for not supported value of bCase