X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e38c6b5fc716923a6c5fcb7f157ee50706c577c2..6e2717981772a139d3cd9e51d497b13792fe662d:/contrib/samples/mmedia/mmboard.cpp?ds=sidebyside diff --git a/contrib/samples/mmedia/mmboard.cpp b/contrib/samples/mmedia/mmboard.cpp index 4ba796c958..91640f3018 100644 --- a/contrib/samples/mmedia/mmboard.cpp +++ b/contrib/samples/mmedia/mmboard.cpp @@ -16,9 +16,6 @@ // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ - #pragma implementation "mmboard.cpp" -#endif // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" @@ -198,7 +195,15 @@ wxUint8 MMBoardApp::TestMultimediaCaps() caps = 0; -#ifdef __UNIX__ +#ifdef __WIN32__ + // We test the Windows sound support. + + dev = new wxSoundStreamWin(); + if (dev->GetError() == wxSOUND_NOERROR) + caps |= MM_SOUND_WIN; + delete dev; + +#elif defined __UNIX__ // We now test the ESD support dev = new wxSoundStreamESD(); @@ -221,15 +226,6 @@ wxUint8 MMBoardApp::TestMultimediaCaps() } #endif -#endif - -#ifdef __WIN32__ - // We test the Windows sound support. - - dev = new wxSoundStreamWin(); - if (dev->GetError() == wxSOUND_NOERROR) - caps |= MM_SOUND_WIN; - delete dev; #endif return caps; @@ -426,8 +422,10 @@ void MMBoardFrame::OnOpen(wxCommandEvent& WXUNUSED(event)) } // select a file to be opened +#if wxUSE_FILEDLG selected_file = wxLoadFileSelector(_T("multimedia"), _T("*"), NULL, this); - if (selected_file.IsNull()) +#endif // wxUSE_FILEDLG + if (selected_file.empty()) return; m_opened_file = MMBoardManager::Open(selected_file); @@ -591,4 +589,3 @@ void MMBoardFrame::OnSetPosition(wxCommandEvent& WXUNUSED(event)) UpdateMMedInfo(); } -