X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/85c9f98b509e8a7870a99fb580775f6fda4cf38e..404b319a85dadd7decf7a5a5331020520031a41c:/src/cocoa/sound.mm diff --git a/src/cocoa/sound.mm b/src/cocoa/sound.mm index dbafe8f5f6..81a6def712 100644 --- a/src/cocoa/sound.mm +++ b/src/cocoa/sound.mm @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: sound.cpp +// Name: src/cocoa/sound.mm // Purpose: wxSound class implementation: optional // Authors: David Elliott, Ryan Norton // Modified by: @@ -23,6 +23,8 @@ #include "wx/cocoa/string.h" #include "wx/cocoa/log.h" +#include "wx/cocoa/objc/objc_uniquifying.h" + #import #import @@ -39,6 +41,7 @@ static bool s_loopCurrentSound = false; // Delegate methods - (void)sound:(NSSound *)theSound didFinishPlaying:(BOOL)finishedPlaying; @end // interface wxNSSoundDelegate : NSObject +WX_DECLARE_GET_OBJC_CLASS(wxNSSoundDelegate,NSObject) @implementation wxNSSoundDelegate : NSObject @@ -66,8 +69,9 @@ static bool s_loopCurrentSound = false; } @end // wxNSSoundDelegate +WX_IMPLEMENT_GET_OBJC_CLASS(wxNSSoundDelegate,NSObject) -const wxObjcAutoRefFromAlloc wxSound::sm_cocoaDelegate = [[wxNSSoundDelegate alloc] init]; +const wxObjcAutoRefFromAlloc wxSound::sm_cocoaDelegate = [[WX_GET_OBJC_CLASS(wxNSSoundDelegate) alloc] init]; // ------------------------------------------------------------------ // wxSound @@ -161,7 +165,7 @@ bool wxSound::DoPlay(unsigned flags) const bool wxSound::IsPlaying() { // Normally you can send a message to a nil object and it will return - // nil. That behavior would probably be okay here but in general it's + // nil. That behaviour would probably be okay here but in general it's // not recommended to send a message to a nil object if the return // value is not an object. Better safe than sorry. if(s_currentSound)