Remove some out of date comments.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-08-07 09:24:02 +00:00
parent c75400ea22
commit 1680c3561b

View 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)