X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/efe2190fa74270ae53c3c76c3e52378008814ca5..4e15d1caa03346c126015019c1fdf093033ef40b:/samples/animate/anitest.cpp diff --git a/samples/animate/anitest.cpp b/samples/animate/anitest.cpp index 6d4a4ecb00..e958d585a2 100644 --- a/samples/animate/anitest.cpp +++ b/samples/animate/anitest.cpp @@ -28,8 +28,8 @@ #include "wx/wx.h" #endif -#ifndef __WXMSW__ - #include "sample.xpm" +#ifndef wxHAS_IMAGES_IN_RESOURCES + #include "../sample.xpm" #endif #include "wx/aboutdlg.h" @@ -102,8 +102,6 @@ bool MyApp::OnInit() wxDEFAULT_FRAME_STYLE); frame->Show(true); - SetTopWindow(frame); - return true; } @@ -295,7 +293,7 @@ void MyFrame::OnOpen(wxCommandEvent& WXUNUSED(event)) m_animationCtrl->Play(); #else wxFileInputStream stream(filename); - if (!stream.Ok()) + if (!stream.IsOk()) { wxLogError(wxT("Sorry, this animation is not a valid format for wxAnimation.")); return;