aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-04-29 09:53:06 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-04-29 09:53:06 +0800
commit75741e52c3431a8fa16ed535329fb76cb2840100 (patch)
tree2e09d5f2ccd1008866355865e09bda4bb75f725a /composer/e-msg-composer.c
parent9192f0dc883acfaff0fbe3f6a7f8e49672546a02 (diff)
downloadgsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.tar
gsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.tar.gz
gsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.tar.bz2
gsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.tar.lz
gsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.tar.xz
gsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.tar.zst
gsoc2013-evolution-75741e52c3431a8fa16ed535329fb76cb2840100.zip
Fix compilation errors.
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r--composer/e-msg-composer.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index c1379d21aa..d1a6abb222 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -1109,13 +1109,12 @@ get_signature_html (EMsgComposer *composer)
"<!--+GtkHTML:<DATA class=\"ClueFlow\" key=\"signature_name\" value=\"uid:%s\">-->"
"<TABLE WIDTH=\"100%%\" CELLSPACING=\"0\" CELLPADDING=\"0\"><TR><TD><BR>"
"%s%s%s%s"
- "%s</TD></TR></TABLE>",
+ "</TD></TR></TABLE>",
encoded_uid ? encoded_uid : "",
format_html ? "" : "<PRE>\n",
format_html || (!strncmp ("-- \n", text, 4) || strstr (text, "\n-- \n")) ? "" : "-- \n",
text,
- format_html ? "" : "</PRE>\n",
- is_top_signature () ? "<BR>" : "");
+ format_html ? "" : "</PRE>\n");
g_free (text);
g_free (encoded_uid);
text = html;
@@ -3862,7 +3861,6 @@ e_msg_composer_show_sig_file (EMsgComposer *composer)
GtkhtmlEditor *editor;
GtkHTML *html;
gchar *html_text;
- gboolean top_signature;
g_return_if_fail (E_IS_MSG_COMPOSER (composer));
@@ -3889,8 +3887,6 @@ e_msg_composer_show_sig_file (EMsgComposer *composer)
}
gtkhtml_editor_run_command (editor, "unblock-selection");
- top_signature = is_top_signature ();
-
html_text = get_signature_html (composer);
if (html_text) {
gtkhtml_editor_run_command (editor, "insert-paragraph");
@@ -3904,10 +3900,6 @@ e_msg_composer_show_sig_file (EMsgComposer *composer)
gtkhtml_editor_run_command (editor, "style-normal");
gtkhtml_editor_insert_html (editor, html_text);
g_free (html_text);
- } else if (top_signature) {
- /* insert paragraph after the signature ClueFlow things */
- gtkhtml_editor_run_command (editor, "cursor-forward");
- gtkhtml_editor_run_command (editor, "insert-paragraph");
}
gtkhtml_editor_undo_end (editor);