]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed unused parameter warnings for webview on OSX.
authorSteve Lamerton <steve.lamerton@gmail.com>
Sat, 17 Nov 2012 13:34:09 +0000 (13:34 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Sat, 17 Nov 2012 13:34:09 +0000 (13:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/webview_webkit.h

index e876aadf0146508dc6a27e352cbba1ec6ab5b565..94f99c1d580ee34a314d9000351927aa2752bd37 100644 (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; }