aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-08-09 20:59:10 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-08-09 20:59:10 +0800
commit8c383be599a8d596ad784dbebde5f8494b1240d7 (patch)
treea03e35fcaf31b8289a85e3054a47e3245ed68112 /plugins
parentac41ac7e9ef884bdfebd8cf9f9c61208aadb52c9 (diff)
downloadgsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.tar
gsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.tar.gz
gsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.tar.bz2
gsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.tar.lz
gsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.tar.xz
gsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.tar.zst
gsoc2013-evolution-8c383be599a8d596ad784dbebde5f8494b1240d7.zip
Whitespace and coding style cleanup.
Diffstat (limited to 'plugins')
-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 b9c3ce3795..94b629eae2 100644
--- a/plugins/mail-to-task/mail-to-task.c
+++ b/plugins/mail-to-task/mail-to-task.c
@@ -346,7 +346,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);
@@ -491,7 +491,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);
@@ -534,7 +534,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 {