[grisbi-cvs] grisbi/src tip.c,1.30,1.31

Pierre Biava pbiava at users.sourceforge.net
Sat Dec 19 20:59:17 CET 2009


Update of /cvsroot/grisbi/grisbi/src
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv8976

Modified Files:
	tip.c 
Log Message:
correction of an error format for g_markup_printf_escaped

Index: tip.c
===================================================================
RCS file: /cvsroot/grisbi/grisbi/src/tip.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- tip.c	25 Nov 2009 22:23:26 -0000	1.30
+++ tip.c	19 Dec 2009 19:59:15 -0000	1.31
@@ -107,7 +107,7 @@
         if ( etat.last_tip > 1 )
             etat.last_tip --;
         change_button_sensitiveness ( dialog, 1, TRUE ); 
-                tmpstr = g_markup_printf_escaped (
+                tmpstr = g_markup_printf_escaped ("%s",
                         g_strconcat ( "<span size=\"larger\" weight=\"bold\">",
                         _("Did you know that..."),
                         "</span>\n\n",
@@ -121,7 +121,7 @@
 
         case 2:
         etat.last_tip ++;
-        tmpstr = g_markup_printf_escaped (
+        tmpstr = g_markup_printf_escaped ("%s",
                         g_strconcat ( "<span size=\"larger\" weight=\"bold\">",
                         _("Did you know that..."),
                         "</span>\n\n",



More information about the cvs mailing list