Commit 619b44ee authored by Sam Lantinga's avatar Sam Lantinga

Merged fix for bug #508 from SDL 1.2 revision 3495

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402684
parent 14ad7b45
......@@ -54,6 +54,16 @@
#define NX_DEVICERCTLKEYMASK 0x00002000
#endif
@interface SDLTranslatorResponder : NSTextView
{
}
- (void) doCommandBySelector:(SEL)myselector;
@end
@implementation SDLTranslatorResponder
- (void) doCommandBySelector:(SEL) myselector {}
@end
/* This is the original behavior, before support was added for
* differentiating between left and right versions of the keys.
*/
......@@ -330,7 +340,7 @@ Cocoa_InitKeyboard(_THIS)
NSAutoreleasePool *pool;
pool = [[NSAutoreleasePool alloc] init];
data->fieldEdit = [[NSTextView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 0.0, 0.0)];
data->fieldEdit = [[SDLTranslatorResponder alloc] initWithFrame:NSMakeRect(0.0, 0.0, 0.0, 0.0)];
[pool release];
SDL_zero(keyboard);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment