mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 16:11:25 +00:00
NSUInteger / NSInteger transitions for count/length variables.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@37135 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
78d4babed7
commit
3dfb67766c
5 changed files with 21 additions and 15 deletions
|
@ -3,6 +3,12 @@
|
|||
* Modules/Parsers/ProjectCenter/PCParser.m
|
||||
Do not advance start and get startType if we are at the end anyway.
|
||||
|
||||
* Modules/Parsers/ProjectCenter/ObjCClassHandler.h
|
||||
* Modules/Parsers/ProjectCenter/ObjCClassHandler.m
|
||||
* Modules/Parsers/ProjectCenter/ObjCMethodHandler.h
|
||||
* Modules/Parsers/ProjectCenter/ObjCMethodHandler.m
|
||||
NSUInteger / NSInteger transitions for count/length variables.
|
||||
|
||||
2013-09-21 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Modules/Parsers/ProjectCenter/PCParser.h
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
** ObjCClassHandler.h
|
||||
**
|
||||
** Copyright (c) 2003
|
||||
** Copyright (c) 2003-2013
|
||||
**
|
||||
** Author: Yen-Ju <yjchenx@hotmail.com>
|
||||
**
|
||||
|
@ -55,17 +55,17 @@ typedef enum _CS {
|
|||
|
||||
@interface ObjCClassHandler : ObjCCommentHandler <CodeHandler>
|
||||
{
|
||||
unsigned int position;
|
||||
NSUInteger position;
|
||||
|
||||
BOOL inSpace;
|
||||
NSMutableString *keyword;
|
||||
NSMutableString *class;
|
||||
NSMutableArray *classes;
|
||||
unichar _preSymbol;
|
||||
unsigned nameBeginPosition;
|
||||
unsigned nameEndPosition;
|
||||
unsigned bodyBeginPosition;
|
||||
int bodySymbolCount;
|
||||
NSUInteger nameBeginPosition;
|
||||
NSUInteger nameEndPosition;
|
||||
NSUInteger bodyBeginPosition;
|
||||
NSInteger bodySymbolCount;
|
||||
|
||||
CS step;
|
||||
CS prev_step;
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
|
||||
- (void)string:(NSString *)element
|
||||
{
|
||||
unsigned int len = [element length];
|
||||
NSUInteger len = [element length];
|
||||
|
||||
[super string:element];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
** ObjCMethodHandler.h
|
||||
**
|
||||
** Copyright (c) 2003
|
||||
** Copyright (c) 2003-2013
|
||||
**
|
||||
** Author: Yen-Ju <yjchenx@hotmail.com>
|
||||
**
|
||||
|
@ -55,16 +55,16 @@ typedef enum _CheckStep {
|
|||
|
||||
@interface ObjCMethodHandler : ObjCCommentHandler <CodeHandler>
|
||||
{
|
||||
unsigned int position;
|
||||
NSUInteger position;
|
||||
|
||||
BOOL inSpace;
|
||||
NSMutableString *method;
|
||||
NSMutableArray *methods;
|
||||
unichar _preSymbol;
|
||||
unsigned nameBeginPosition;
|
||||
unsigned nameEndPosition;
|
||||
unsigned bodyBeginPosition;
|
||||
int bodySymbolCount;
|
||||
NSUInteger nameBeginPosition;
|
||||
NSUInteger nameEndPosition;
|
||||
NSUInteger bodyBeginPosition;
|
||||
NSInteger bodySymbolCount;
|
||||
|
||||
CheckStep step;
|
||||
CheckStep prev_step;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
** ObjCMethodHandler.m
|
||||
**
|
||||
** Copyright (c) 2003
|
||||
** Copyright (c) 2003-2013
|
||||
**
|
||||
** Author: Yen-Ju <yjchenx@hotmail.com>
|
||||
**
|
||||
|
@ -89,7 +89,7 @@
|
|||
|
||||
- (void)string:(NSString *)element
|
||||
{
|
||||
unsigned int len = [element length];
|
||||
NSUInteger len = [element length];
|
||||
|
||||
[super string:element];
|
||||
|
||||
|
|
Loading…
Reference in a new issue