]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/splash/splash.cpp
Disable some wxWebView tests that fail on the buildbot but not locally.
[wxWidgets.git] / samples / splash / splash.cpp
index de0654b1dc8a74738a98f83319e40de75ec16a83..93fbb7f7080e7b8f29d8a24a1538cde43d52b973 100644 (file)
@@ -137,7 +137,7 @@ bool MyApp::OnInit()
         bitmap = wxBitmap(mobile_xpm);
 
     bool ok = frame->m_isPda
-            ? bitmap.Ok()
+            ? bitmap.IsOk()
             : bitmap.LoadFile(wxT("splash.png"), wxBITMAP_TYPE_PNG);
 
     if (ok)
@@ -218,7 +218,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
     if (m_isPda) bitmap = wxBitmap(mobile_xpm);
 
     bool ok = m_isPda
-            ? bitmap.Ok()
+            ? bitmap.IsOk()
             : bitmap.LoadFile(wxT("splash.png"), wxBITMAP_TYPE_PNG);
 
     if (ok)