unused param warning fixed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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();
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user