From: Vadim Zeitlin Date: Fri, 12 Nov 1999 19:31:35 +0000 (+0000) Subject: unused param warning fixed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f76dbc4d52c005b63745cf924efe30eece4c6f79?hp=148c45edfb391e337a8c1ec669f254ee8fc59554 unused param warning fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/tbarbase.h b/include/wx/tbarbase.h index 1b95221f6d..79e2349772 100644 --- a/include/wx/tbarbase.h +++ b/include/wx/tbarbase.h @@ -164,7 +164,7 @@ public: // will also adjust its position/size) // // NB: the control should have toolbar as its parent - virtual bool AddControl(wxControl *control) { return FALSE; } + virtual bool AddControl(wxControl * WXUNUSED(control)) { return FALSE; } virtual void AddSeparator(); virtual void ClearTools(); diff --git a/src/common/filesys.cpp b/src/common/filesys.cpp index 96ae68773e..b0f1c67a4c 100644 --- a/src/common/filesys.cpp +++ b/src/common/filesys.cpp @@ -161,11 +161,16 @@ wxString wxFileSystemHandler::GetAnchor(const wxString& location) const } -wxString wxFileSystemHandler::FindFirst(const wxString& spec, int flags) { return wxEmptyString; } - -wxString wxFileSystemHandler::FindNext() { return wxEmptyString; } - +wxString wxFileSystemHandler::FindFirst(const wxString& WXUNUSED(spec), + int WXUNUSED(flags)) +{ + return wxEmptyString; +} +wxString wxFileSystemHandler::FindNext() +{ + return wxEmptyString; +} //-------------------------------------------------------------------------------- // wxLocalFSHandler