Changeset 19843
- Timestamp:
- 02/28/07 18:27:54 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/gadgeteer/gadget/Devices/KeyboardMouseDevice/InputWindowCocoa.mm
r19838 r19843 55 55 * entities (such as the user). 56 56 */ 57 @interface WindowObserver : NSObject57 @interface InputWindowObserver : NSObject 58 58 { 59 59 gadget::InputWindowCocoa* mWindow; … … 66 66 @end 67 67 68 @implementation WindowObserver68 @implementation InputWindowObserver 69 69 -(id) initWithWindow:(gadget::InputWindowCocoa*) window 70 70 { … … 249 249 // from mCocoaWindow. We do this so that we can be told if the window 250 250 // gets closed by some external entity. 251 WindowObserver* observer = [[WindowObserver alloc] initWithWindow:this]; 251 InputWindowObserver* observer = 252 [[InputWindowObserver alloc] initWithWindow:this]; 252 253 NSNotificationCenter* nc = [NSNotificationCenter defaultCenter]; 253 254 [nc addObserver:observer
