@@ -119,11 +119,11 @@ @end @implementation OFINICategory @synthesize name = _name; -- (instancetype)OF_init +- (instancetype)of_init { self = [super init]; @try { _lines = [[OFMutableArray alloc] init]; @@ -146,11 +146,11 @@ [_lines release]; [super dealloc]; } -- (void)OF_parseLine: (OFString *)line +- (void)of_parseLine: (OFString *)line { if (![line hasPrefix: @";"]) { OFINICategory_Pair *pair = [[[OFINICategory_Pair alloc] init] autorelease]; OFString *key, *value; @@ -487,11 +487,11 @@ } objc_autoreleasePoolPop(pool); } -- (bool)OF_writeToStream: (OFStream *)stream +- (bool)of_writeToStream: (OFStream *)stream encoding: (of_string_encoding_t)encoding first: (bool)first { if ([_lines count] == 0) return false;