From: <rl...@us...> - 2006-06-10 19:03:28
|
Revision: 16245 Author: rlaager Date: 2006-06-10 12:03:24 -0700 (Sat, 10 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16245&view=rev Log Message: ----------- We don't really need to use the _printf() version of g_string_append() to append a plain string. Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-06-10 19:01:40 UTC (rev 16244) +++ trunk/src/gtkdialogs.c 2006-06-10 19:03:24 UTC (rev 16245) @@ -507,9 +507,9 @@ #endif #ifdef HAVE_LIBXML - g_string_append_printf(str, " <b>XML Parser:</b> libxml2<br/>"); + g_string_append(str, " <b>XML Parser:</b> libxml2<br/>"); #else - g_string_append_printf(str, " <b>XML Parser:</b> GMarkup<br/>"); + g_string_append(str, " <b>XML Parser:</b> GMarkup<br/>"); #endif #ifndef _WIN32 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |