Fixed unused parameter warnings for webview on OSX.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2012-11-17 13:34:09 +00:00
parent 6bfcc4ec98
commit fc95c9f7ab

View File

@@ -87,7 +87,12 @@ public:
virtual void Redo();
//Find function
virtual long Find(const wxString& text, int flags = wxWEB_VIEW_FIND_DEFAULT) { return wxNOT_FOUND; };
virtual long Find(const wxString& text, int flags = wxWEB_VIEW_FIND_DEFAULT)
{
wxUnusedVar(text);
wxUnusedVar(flags);
return wxNOT_FOUND;
}
//Clipboard functions
virtual bool CanCut() const { return true; }