@@ -42,20 +42,20 @@ * * \param UTF8String A UTF-8 encoded C string to append * \param UTF8StringLength The length of the UTF-8 encoded C string */ - (void)appendUTF8String: (const char*)UTF8String - withLength: (size_t)UTF8StringLength; + length: (size_t)UTF8StringLength; /** * \brief Appends a C string with the specified encoding to the OFMutableString. * * \param cString A C string to append * \param encoding The encoding of the C string */ - (void)appendCString: (const char*)cString - withEncoding: (of_string_encoding_t)encoding; + encoding: (of_string_encoding_t)encoding; /** * \brief Appends a C string with the specified encoding and length to the * OFMutableString. * @@ -62,11 +62,11 @@ * \param cString A C string to append * \param encoding The encoding of the C string * \param cStringLength The length of the UTF-8 encoded C string */ - (void)appendCString: (const char*)cString - withEncoding: (of_string_encoding_t)encoding + encoding: (of_string_encoding_t)encoding length: (size_t)cStringLength; /** * \brief Appends another OFString to the OFMutableString. * @@ -92,11 +92,11 @@ * * \param format A format string which generates the string to append * \param arguments The arguments used in the format string */ - (void)appendFormat: (OFConstantString*)format - withArguments: (va_list)arguments; + arguments: (va_list)arguments; /** * \brief Prepends another OFString to the OFMutableString. * * \param string An OFString to prepend