aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-to-task/mail-to-task.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-08-30 12:48:57 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-08-30 12:48:57 +0800
commit0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317 (patch)
treeac2e7dc42ce4020548e020fdec9c281eb8b83e97 /plugins/mail-to-task/mail-to-task.c
parent82bc7f0b36b5e951817307e96e1e0be3a8ee34cc (diff)
downloadgsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.tar
gsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.tar.gz
gsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.tar.bz2
gsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.tar.lz
gsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.tar.xz
gsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.tar.zst
gsoc2013-evolution-0f7f4cfe38b3c4cd83efbe9922ae15c5aee00317.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'plugins/mail-to-task/mail-to-task.c')
-rw-r--r--plugins/mail-to-task/mail-to-task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c
index 1afbd31d24..1b8ad64768 100644
--- a/plugins/mail-to-task/mail-to-task.c
+++ b/plugins/mail-to-task/mail-to-task.c
@@ -361,7 +361,7 @@ do_ask (const gchar *text, gboolean is_create_edit_add)
{
gint res;
GtkWidget *dialog = gtk_message_dialog_new (NULL,
- GTK_DIALOG_MODAL,
+ GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
is_create_edit_add ? GTK_BUTTONS_NONE : GTK_BUTTONS_YES_NO,
"%s", text);
@@ -506,7 +506,7 @@ do_manage_comp_idle (GSList *manage_comp_datas)
const gchar *ask = get_question_edit_old (source_type);
if (ask) {
- char *msg = g_strdup_printf (ask, icalcomponent_get_summary (mc->stored_comp) ? icalcomponent_get_summary (mc->stored_comp) : _("[No Summary]"));
+ gchar *msg = g_strdup_printf (ask, icalcomponent_get_summary (mc->stored_comp) ? icalcomponent_get_summary (mc->stored_comp) : _("[No Summary]"));
gint chosen;
chosen = do_ask (msg, TRUE);
@@ -555,7 +555,7 @@ do_manage_comp_idle (GSList *manage_comp_datas)
const gchar *ask = NULL;
can = FALSE;
-
+
if (with_old == g_slist_length (manage_comp_datas)) {
ask = get_question_create_new_n (source_type, with_old);
} else {