which correctly calls the superclass (NSObject) init.
Add an -init method for correctness; technically not needed as it is never
called but it's an Objective-C best practice.
Release the wxNSTimerData instance just after passing it to the NSTimer
factory method. NSTimer retains it and we don't keep a pointer to it
so we should not keep a refence to it. This fixes the bug in wxTimer::Stop
where the program crashes in the NSCFTimer userInfo method because the
NSTimer has already been invalidated.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35941
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// Name: src/cocoa/timer.mm
// Purpose: wxTimer for wxCocoa
// Author: Ryan Norton
// Name: src/cocoa/timer.mm
// Purpose: wxTimer for wxCocoa
// Author: Ryan Norton
+// Modified by: David Elliott
// Created: 2005-02-04
// RCS-ID: $Id$
// Copyright: (c) Ryan Norton
// Created: 2005-02-04
// RCS-ID: $Id$
// Copyright: (c) Ryan Norton
-- (id)setTimer:(wxTimer*)theTimer;
+- (id)init;
+- (id)initWithWxTimer:(wxTimer*)theTimer;
- (wxTimer*)timer;
@end // interface wxNSTimerData : NSObject
@implementation wxNSTimerData : NSObject
- (wxTimer*)timer;
@end // interface wxNSTimerData : NSObject
@implementation wxNSTimerData : NSObject
-- (id)setTimer:(wxTimer*)theTimer;
+ if(!(self = [super init]))
+ return nil;
+ m_timer = NULL;
+ return self;
+}
+
+- (id)initWithWxTimer:(wxTimer*)theTimer;
+{
+ if(!(self = [super init]))
+ return nil;
m_timer = theTimer;
return self;
}
m_timer = theTimer;
return self;
}
- (wxTimer*)timer
{
return m_timer;
- (wxTimer*)timer
{
return m_timer;
wxAutoNSAutoreleasePool thePool;
wxAutoNSAutoreleasePool thePool;
+ wxNSTimerData *userInfo = [[wxNSTimerData alloc] initWithWxTimer:this];
m_cocoaNSTimer = [[NSTimer
scheduledTimerWithTimeInterval: millisecs / 1000.0 //seconds
target: wxTimer::sm_cocoaDelegate
selector: @selector(onNotify:)
m_cocoaNSTimer = [[NSTimer
scheduledTimerWithTimeInterval: millisecs / 1000.0 //seconds
target: wxTimer::sm_cocoaDelegate
selector: @selector(onNotify:)
- userInfo: [[wxNSTimerData alloc] setTimer:this]
repeats: oneShot == false] retain];
repeats: oneShot == false] retain];
- NSObject* theUserInfo = [m_cocoaNSTimer userInfo];
+ // FIXME: Is this safe to do if !isValid ?
[m_cocoaNSTimer invalidate];
[m_cocoaNSTimer invalidate];
[m_cocoaNSTimer release];
m_cocoaNSTimer = NULL;
}
[m_cocoaNSTimer release];
m_cocoaNSTimer = NULL;
}