Skip to content

Commit

Permalink
int -> NSUInteger for count index and limit
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh:https://svn.savannah.nongnu.org/gap/trunk@3428 d25b4930-3292-e311-b074-0010c6de5da8
  • Loading branch information
rmottola committed Apr 8, 2017
1 parent a1d67d2 commit ca4f904
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions user-apps/Graphos/GRDocView.m
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ - (void)addTextAtPoint:(NSPoint)p

[self saveCurrentObjects];

NSLog(@"AddTextAtPoint");
for(i = 0; i < [objects count]; i++)
[[[objects objectAtIndex: i] editor] unselect];

Expand Down Expand Up @@ -435,7 +434,7 @@ - (void)deleteSelectedObjects
{
id obj;
NSMutableArray *deleted;
int i, count;
NSUInteger i, count;

deleted = [NSMutableArray arrayWithCapacity: 1];

Expand Down

0 comments on commit ca4f904

Please sign in to comment.