[evolution] Don't use '%%' in strings that are not printf()'ed



commit a83eda3085e9143143ed0b0e37f939774a5bd472
Author: Dan VrÃtil <dvratil redhat com>
Date:   Thu Jun 14 12:04:29 2012 +0200

    Don't use '%%' in strings that are not printf()'ed

 em-format/e-mail-formatter-headers.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/em-format/e-mail-formatter-headers.c b/em-format/e-mail-formatter-headers.c
index 8971adf..fdfbd83 100644
--- a/em-format/e-mail-formatter-headers.c
+++ b/em-format/e-mail-formatter-headers.c
@@ -321,14 +321,14 @@ format_full_headers (EMailFormatter *formatter,
 
 		g_string_append (
 			buffer,
-			"<tr valign=\"top\"><td><table border=1 width=\"100%%\" "
+			"<tr valign=\"top\"><td><table border=1 width=\"100%\" "
 			"cellspacing=2 cellpadding=2><tr>");
 		if (gtk_widget_get_default_direction () == GTK_TEXT_DIR_RTL)
 			g_string_append (
-				buffer, "<td align=\"right\" width=\"100%%\">");
+				buffer, "<td align=\"right\" width=\"100%\">");
 		else
 			g_string_append (
-				buffer, "<td align=\"left\" width=\"100%%\">");
+				buffer, "<td align=\"left\" width=\"100%\">");
 		bold_sender = g_strconcat ("<b>", header_sender, "</b>", NULL);
 		bold_from = g_strconcat ("<b>", header_from, "</b>", NULL);
 		/* Translators: This message suggests to the receipients
@@ -348,7 +348,7 @@ format_full_headers (EMailFormatter *formatter,
 
 	g_string_append (
 		buffer,
-		"<tr valign=\"top\"><td width=\"100%%\">"
+		"<tr valign=\"top\"><td width=\"100%\">"
 		"<table border=0 cellpadding=\"0\">\n");
 
 	g_free (evolution_imagesdir);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]