From b6c6afad93015799a00b6b5fd8407e1c1ba76592 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 6 Jul 2014 14:58:41 +0000 Subject: [PATCH] Fix warning due to wrong use of NULL in wxOSX wxSound. This is the backport of the old r76862 from trunk. --- src/osx/core/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osx/core/sound.cpp b/src/osx/core/sound.cpp index fab1cb5f26..0f84638e29 100644 --- a/src/osx/core/sound.cpp +++ b/src/osx/core/sound.cpp @@ -51,7 +51,7 @@ protected: }; wxOSXAudioToolboxSoundData::wxOSXAudioToolboxSoundData(const wxString& fileName) : - m_soundID(NULL) + m_soundID(0) { m_sndname = fileName; m_playing = false;