mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 18:41:00 +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
63bb89e9de
commit
7bcbecc7e9
1 changed files with 3 additions and 3 deletions
|
@ -144,7 +144,7 @@ static NSInputManager *currentInputManager = nil;
|
||||||
|
|
||||||
+ (BOOL) parseKey: (NSString *)key
|
+ (BOOL) parseKey: (NSString *)key
|
||||||
intoCharacter: (unichar *)character
|
intoCharacter: (unichar *)character
|
||||||
andModifiers: (int *)modifiers
|
andModifiers: (unsigned int *)modifiers
|
||||||
{
|
{
|
||||||
int flags = 0;
|
int flags = 0;
|
||||||
unichar c = 0;
|
unichar c = 0;
|
||||||
|
@ -242,7 +242,7 @@ static NSInputManager *currentInputManager = nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (NSString *) describeKeyStroke: (unichar)character
|
+ (NSString *) describeKeyStroke: (unichar)character
|
||||||
withModifiers: (int)modifiers
|
withModifiers: (unsigned int)modifiers
|
||||||
{
|
{
|
||||||
NSMutableString *description = [NSMutableString new];
|
NSMutableString *description = [NSMutableString new];
|
||||||
int i;
|
int i;
|
||||||
|
@ -442,7 +442,7 @@ static NSInputManager *currentInputManager = nil;
|
||||||
|
|
||||||
{
|
{
|
||||||
Class string = [NSString class];
|
Class string = [NSString class];
|
||||||
int i;
|
unsigned int i;
|
||||||
|
|
||||||
for (i = 0; i < [keyBindingsFiles count]; i++)
|
for (i = 0; i < [keyBindingsFiles count]; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue