renamed wxWave to wxSound; compatibility fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-02-02 13:16:31 +00:00
parent bae90c4cd5
commit cad1a197e5
4 changed files with 74 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: wave.h
// Name: sound.h
// Purpose: wxSound class
// Author: Julian Smart, Vaclav Slavik
// Modified by:
@@ -14,7 +14,7 @@
#include "wx/defs.h"
#if wxUSE_WAVE
#if wxUSE_SOUND
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "sound.h"
@@ -84,7 +84,7 @@ public:
static void UnloadBackend();
protected:
bool DoPlay(unsigned flags);
bool DoPlay(unsigned flags) const;
static void EnsureBackend();
void Free();
@@ -159,6 +159,6 @@ public:
};
#endif // wxUSE_WAVE
#endif // wxUSE_SOUND
#endif