@@ -76,21 +76,21 @@ * Appends a formatted UTF-8 encoded C string to the OFString. * See printf for the format syntax. * * \param fmt A format string which generates the string to append */ -- appendWithFormat: (OFString*)fmt, ...; +- appendFormat: (OFString*)fmt, ...; /** * Appends a formatted UTF-8 encoded C string to the OFString. * See printf for the format syntax. * * \param fmt A format string which generates the string to append * \param args The arguments used in the format string */ -- appendWithFormat: (OFString*)fmt - arguments: (va_list)args; +- appendFormat: (OFString*)fmt + withArguments: (va_list)args; /** * Reverse the OFString. */ - reverse;