]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/controls/webtest.cpp
Fix compilation of wxWebView under mingw by adding missing definitions and dynamicall...
[wxWidgets.git] / tests / controls / webtest.cpp
index ae4cfe224571521ce30e2b13da621dea3e1ff154..7ab8a7570e7f382e3067b50b7da282d18f8d8ecd 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "testprec.h"
 
-#if wxUSE_WEB
+#if wxUSE_WEBVIEW && (wxUSE_WEBVIEW_WEBKIT || wxUSE_WEBVIEW_IE)
 
 #ifdef __BORLANDC__
     #pragma hdrstop
@@ -88,9 +88,9 @@ void WebTestCase::LoadUrl(int times)
     for(int i = 0; i < times; i++)
     {
         if(i % 2 == 1)
-            m_browser->LoadUrl("about:blank");
+            m_browser->LoadURL("about:blank");
         else
-            m_browser->LoadUrl("about:");
+            m_browser->LoadURL("about:");
         wxYield();
     }
 }
@@ -244,4 +244,4 @@ void WebTestCase::RunScript()
     CPPUNIT_ASSERT_EQUAL("Hello World!", m_browser->GetPageText());
 }
 
-#endif //wxUSE_WEB
+#endif //wxUSE_WEBVIEW && (wxUSE_WEBVIEW_WEBKIT || wxUSE_WEBVIEW_IE)