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
This commit is contained in:
Fred Kiefer 2003-06-21 23:23:02 +00:00
parent 9d122f2cb1
commit f9f2f27cb6

View file

@ -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. */