mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Some NSInteger to NSUInteger changes to match return values
of methods OK Fred Kiefer git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35051 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
66499ebd49
commit
835817a415
3 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2012-04-10 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
|
||||
* Tools/make_strings/StringsFile.m
|
||||
* Tools/pl.m
|
||||
some NSInteger -> NSUInteger changes to match return
|
||||
values of methods
|
||||
|
||||
2012-04-07 13:54 theraven
|
||||
|
||||
* libs/base/trunk/Source/NSMethodSignature.m: Fix NSMethodSignature
|
||||
|
|
|
@ -127,7 +127,7 @@ static NSString *parse_string(NSString **ptr)
|
|||
NSMutableArray *update_list=[[NSMutableArray alloc] init];
|
||||
NSArray *lines;
|
||||
NSString *l;
|
||||
NSInteger i,c,pos;
|
||||
NSUInteger i,c,pos;
|
||||
NSMutableDictionary *dummy_entries=[[NSMutableDictionary alloc] init];
|
||||
|
||||
NSMutableString *user_comment=[[NSMutableString alloc] init];
|
||||
|
|
|
@ -39,7 +39,7 @@ void create_output(id propertyList)
|
|||
NSFileHandle *fileHandle = nil;
|
||||
NSProcessInfo *processInfo = [NSProcessInfo processInfo];
|
||||
NSArray *arguments = [processInfo arguments];
|
||||
NSInteger outputIndex = 0;
|
||||
NSUInteger outputIndex = 0;
|
||||
|
||||
// insert your code here
|
||||
outputIndex = [arguments indexOfObject: @"-output"];
|
||||
|
@ -94,7 +94,7 @@ NSData *read_input()
|
|||
NSFileHandle *fileHandle = nil;
|
||||
NSProcessInfo *processInfo = [NSProcessInfo processInfo];
|
||||
NSArray *arguments = [processInfo arguments];
|
||||
NSInteger inputIndex = 0;
|
||||
NSUInteger inputIndex = 0;
|
||||
|
||||
// insert your code here
|
||||
inputIndex = [arguments indexOfObject: @"-input"];
|
||||
|
|
Loading…
Reference in a new issue