mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-21 02:41:07 +00:00
NSUInteger updates
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@34447 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
61a6349b72
commit
9ee2a47025
2 changed files with 8 additions and 8 deletions
|
@ -241,7 +241,7 @@ extern NSString * const SQLClientDidDisconnectNotification;
|
|||
* Returns the number of items in the record.<br />
|
||||
* Subclasses must implement this method.
|
||||
*/
|
||||
- (unsigned) count;
|
||||
- (NSUInteger) count;
|
||||
|
||||
/**
|
||||
* Return the record as a mutable dictionary with the keys as the
|
||||
|
@ -262,7 +262,7 @@ extern NSString * const SQLClientDidDisconnectNotification;
|
|||
/** <override-subclass />
|
||||
* Returns the key at the specified indes.<br />
|
||||
*/
|
||||
- (NSString*) keyAtIndex: (unsigned)index;
|
||||
- (NSString*) keyAtIndex: (NSUInteger)index;
|
||||
|
||||
/** <override-subclass />
|
||||
* Returns the object at the specified indes.<br />
|
||||
|
@ -1306,7 +1306,7 @@ SQLCLIENT_PRIVATE
|
|||
* which have been added to the receiver. For a count of the total number
|
||||
* of statements, use the -totalCount method.
|
||||
*/
|
||||
- (unsigned) count;
|
||||
- (NSUInteger) count;
|
||||
|
||||
/**
|
||||
* Returns the database client with which this instance operates.<br />
|
||||
|
|
10
SQLClient.m
10
SQLClient.m
|
@ -381,7 +381,7 @@ static Class rClass = 0;
|
|||
return [self retain];
|
||||
}
|
||||
|
||||
- (unsigned int) count
|
||||
- (NSUInteger) count
|
||||
{
|
||||
SUBCLASS_RESPONSIBILITY
|
||||
return 0;
|
||||
|
@ -427,7 +427,7 @@ static Class rClass = 0;
|
|||
return nil;
|
||||
}
|
||||
|
||||
- (NSString*) keyAtIndex: (unsigned)index
|
||||
- (NSString*) keyAtIndex: (NSUInteger)index
|
||||
{
|
||||
SUBCLASS_RESPONSIBILITY
|
||||
return nil;
|
||||
|
@ -598,7 +598,7 @@ static Class rClass = 0;
|
|||
return [self retain];
|
||||
}
|
||||
|
||||
- (unsigned int) count
|
||||
- (NSUInteger) count
|
||||
{
|
||||
return count;
|
||||
}
|
||||
|
@ -664,7 +664,7 @@ static Class rClass = 0;
|
|||
return nil;
|
||||
}
|
||||
|
||||
- (NSString*) keyAtIndex: (unsigned int)pos
|
||||
- (NSString*) keyAtIndex: (NSUInteger)pos
|
||||
{
|
||||
id *ptr;
|
||||
|
||||
|
@ -2944,7 +2944,7 @@ static unsigned int maxConnections = 8;
|
|||
return c;
|
||||
}
|
||||
|
||||
- (unsigned) count
|
||||
- (NSUInteger) count
|
||||
{
|
||||
return [_info count];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue