diff --git a/Headers/gnustep/gui/NSInputManager.h b/Headers/gnustep/gui/NSInputManager.h index 3cd87ef5d..191a7c627 100644 --- a/Headers/gnustep/gui/NSInputManager.h +++ b/Headers/gnustep/gui/NSInputManager.h @@ -123,7 +123,7 @@ encounter this keystroke, we abort all pending keystrokes and reset ourselves immediately into vanilla root input state. */ unichar _abortCharacter; - int _abortFlags; + unsigned int _abortFlags; /* When it is YES, keystrokes containing the NSControlKeyMask as not inserted into the text. This is so that if you press Control-x, @@ -161,7 +161,7 @@ the modifiers. */ + (BOOL) parseKey: (NSString *)key intoCharacter: (unichar *)character - andModifiers: (int *)modifiers; + andModifiers: (unsigned int *)modifiers; /* This is used to produce a key description which can be put into a keybinding file from an actual keystroke. The gnustep-gui never @@ -172,7 +172,7 @@ files. Pass 0 as modifiers if you only want the name of the keystroke, ignoring modifiers. */ + (NSString *) describeKeyStroke: (unichar)character - withModifiers: (int)modifiers; + withModifiers: (unsigned int)modifiers; /* Methods used internally ... not really part of the public API, can change without notice. */