Fix method name mismatch
FossilOrigin-Name: 770a096b55820c6e2d290aebabc455ecda51560c1e1ef99ceb9b04c6b2f9a00d
This commit is contained in:
parent
f4cee3b139
commit
f29fb9fa8c
1 changed files with 3 additions and 3 deletions
|
@ -68,12 +68,12 @@ convertType(PGresult *res, int column, OFString *string)
|
|||
@end
|
||||
|
||||
@implementation PGResultRow
|
||||
+ (instancetype)rowWithResult: (PGResult *)result row: (int)row
|
||||
+ (instancetype)pg_rowWithResult: (PGResult *)result row: (int)row
|
||||
{
|
||||
return [[[self alloc] initWithResult: result row: row] autorelease];
|
||||
return [[[self alloc] pg_initWithResult: result row: row] autorelease];
|
||||
}
|
||||
|
||||
- (instancetype)initWithResult: (PGResult *)result row: (int)row
|
||||
- (instancetype)pg_initWithResult: (PGResult *)result row: (int)row
|
||||
{
|
||||
self = [super init];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue