From f9f2f27cb6a3cf627b45db99e19b98dcf8488586 Mon Sep 17 00:00:00 2001 From: Fred Kiefer Date: Sat, 21 Jun 2003 23:23:02 +0000 Subject: [PATCH] Changed ivar _abortFlags to unsigned. Changed all modifier parameters to unsigned. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16982 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/gui/NSInputManager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. */