X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..b9efe021b554fa3967d1442cf758435c5cd5ae8f:/src/msw/sound.cpp diff --git a/src/msw/sound.cpp b/src/msw/sound.cpp index 7c96fee643..35abc8ef78 100644 --- a/src/msw/sound.cpp +++ b/src/msw/sound.cpp @@ -6,7 +6,7 @@ // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) @@ -32,11 +32,7 @@ #include -#if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__) - #include "wx/msw/gnuwin32/extra.h" -#else - #include -#endif +#include wxSound::wxSound() : m_waveData(NULL), m_waveLength(0), m_isResource(false) @@ -66,7 +62,7 @@ bool wxSound::Create(const wxString& fileName, bool isResource) if (isResource) { - m_isResource = TRUE; + m_isResource = true; HRSRC hresInfo; hresInfo = ::FindResource((HMODULE) wxhInstance, fileName, wxT("WAVE"));