]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove some out of date comments.
authorSteve Lamerton <steve.lamerton@gmail.com>
Sun, 7 Aug 2011 09:24:02 +0000 (09:24 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Sun, 7 Aug 2011 09:24:02 +0000 (09:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/webview_webkit.mm

index 3c20abad5490c2a6dddaffa5df267b26463b5b09..b99504e125b1fec6f94f89d2d89dd1e90d3692dc 100644 (file)
@@ -415,10 +415,7 @@ void wxWebViewWebKit::GoBack()
     if ( !m_webView )
         return;
 
-    bool result = [(WebView*)m_webView goBack];
-
-    // TODO: return result (if it also exists in other backends...)
-    //return result;
+    [(WebView*)m_webView goBack];
 }
 
 void wxWebViewWebKit::GoForward()
@@ -426,10 +423,7 @@ void wxWebViewWebKit::GoForward()
     if ( !m_webView )
         return;
 
-    bool result = [(WebView*)m_webView goForward];
-
-    // TODO: return result (if it also exists in other backends...)
-    //return result;
+    [(WebView*)m_webView goForward];
 }
 
 void wxWebViewWebKit::Reload(wxWebViewReloadFlags flags)