]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed incorrect get page source check around SetPageSource.
authorKevin Ollivier <kevino@theolliviers.com>
Tue, 27 Jun 2006 20:53:37 +0000 (20:53 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Tue, 27 Jun 2006 20:53:37 +0000 (20:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/htmlctrl/webkit/webkit.mm

index 5e88efa8e4c77ceb8ae1a6a546c71d384f0aaca0..1ade64025be7a220a69888fa4cb811c9170ca21e 100755 (executable)
@@ -249,10 +249,7 @@ void wxWebKitCtrl::SetPageSource(wxString& source, const wxString& baseUrl){
     if ( !m_webView )
         return;
 
-    if (CanGetPageSource()){
-        [[m_webView mainFrame] loadHTMLString:(NSString*)wxNSStringWithWxString( source ) baseURL:[NSURL URLWithString:wxNSStringWithWxString( baseUrl )]];
-    }
-
+    [[m_webView mainFrame] loadHTMLString:(NSString*)wxNSStringWithWxString( source ) baseURL:[NSURL URLWithString:wxNSStringWithWxString( baseUrl )]];
 }
 
 void wxWebKitCtrl::OnSize(wxSizeEvent &event){