@@ -313,11 +313,11 @@ objc_autoreleasePoolPop(pool); } - (void)appendUTF8String: (const char*)UTF8String - withLength: (size_t)UTF8StringLength + length: (size_t)UTF8StringLength { void *pool = objc_autoreleasePoolPush(); [self appendString: [OFString stringWithUTF8String: UTF8String length: UTF8StringLength]]; @@ -324,11 +324,11 @@ objc_autoreleasePoolPop(pool); } - (void)appendCString: (const char*)cString - withEncoding: (of_string_encoding_t)encoding + encoding: (of_string_encoding_t)encoding { void *pool = objc_autoreleasePoolPush(); [self appendString: [OFString stringWithCString: cString encoding: encoding]]; @@ -335,11 +335,11 @@ objc_autoreleasePoolPop(pool); } - (void)appendCString: (const char*)cString - withEncoding: (of_string_encoding_t)encoding + encoding: (of_string_encoding_t)encoding length: (size_t)cStringLength { void *pool = objc_autoreleasePoolPush(); [self appendString: [OFString stringWithCString: cString @@ -359,16 +359,16 @@ { va_list arguments; va_start(arguments, format); [self appendFormat: format - withArguments: arguments]; + arguments: arguments]; va_end(arguments); } - (void)appendFormat: (OFConstantString*)format - withArguments: (va_list)arguments + arguments: (va_list)arguments { char *UTF8String; int UTF8StringLength; if (format == nil) @@ -381,11 +381,11 @@ @throw [OFInvalidFormatException exceptionWithClass: [self class]]; @try { [self appendUTF8String: UTF8String - withLength: UTF8StringLength]; + length: UTF8StringLength]; } @finally { free(UTF8String); } }