diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-06-14 18:04:29 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-06-14 18:14:45 +0800 |
commit | a83eda3085e9143143ed0b0e37f939774a5bd472 (patch) | |
tree | 6c7cd0eb5343b7262a2e25f3522f1a4f7cf1743e | |
parent | 4f47f662f6daa7b9a3daed77d66b2022ae8398ab (diff) | |
download | gsoc2013-evolution-a83eda3085e9143143ed0b0e37f939774a5bd472.tar.gz gsoc2013-evolution-a83eda3085e9143143ed0b0e37f939774a5bd472.tar.zst gsoc2013-evolution-a83eda3085e9143143ed0b0e37f939774a5bd472.zip |
Don't use '%%' in strings that are not printf()'ed
-rw-r--r-- | 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 8971adf897..fdfbd83e8d 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); |