mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 06:28:54 +00:00
(initWithName:host:):
Removed compiler warning about signed/unsigned comparision. Adopted to changes in header. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16983 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f9f2f27cb6
commit
5261934143
1 changed files with 3 additions and 3 deletions
|
@ -144,7 +144,7 @@ static NSInputManager *currentInputManager = nil;
|
|||
|
||||
+ (BOOL) parseKey: (NSString *)key
|
||||
intoCharacter: (unichar *)character
|
||||
andModifiers: (int *)modifiers
|
||||
andModifiers: (unsigned int *)modifiers
|
||||
{
|
||||
int flags = 0;
|
||||
unichar c = 0;
|
||||
|
@ -242,7 +242,7 @@ static NSInputManager *currentInputManager = nil;
|
|||
}
|
||||
|
||||
+ (NSString *) describeKeyStroke: (unichar)character
|
||||
withModifiers: (int)modifiers
|
||||
withModifiers: (unsigned int)modifiers
|
||||
{
|
||||
NSMutableString *description = [NSMutableString new];
|
||||
int i;
|
||||
|
@ -442,7 +442,7 @@ static NSInputManager *currentInputManager = nil;
|
|||
|
||||
{
|
||||
Class string = [NSString class];
|
||||
int i;
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < [keyBindingsFiles count]; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue