added missing destructor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2009-09-14 13:23:48 +00:00
parent 0770c0a05f
commit 02ca710b3b

View File

@ -56,6 +56,11 @@ wxOSXAudioToolboxSoundData::wxOSXAudioToolboxSoundData(const wxString& fileName)
m_sndname = fileName;
}
wxOSXAudioToolboxSoundData::~wxOSXAudioToolboxSoundData()
{
DoStop();
}
void wxOSXAudioToolboxSoundData::CompletionCallback(SystemSoundID mySSID, void * soundRef)
{
wxOSXAudioToolboxSoundData* data = (wxOSXAudioToolboxSoundData*) soundRef;