aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-08-07 21:21:00 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-08-09 20:41:44 +0800
commitcbfab0548de9712d1ca1acca840bbfa76ccb2e93 (patch)
tree7a9f9f7149a2e045ae0371ca6a4fc138f4351419 /plugins
parent010b7fd343cc5f2dc6bbaa11b56a21d9ae114094 (diff)
downloadgsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.tar
gsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.tar.gz
gsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.tar.bz2
gsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.tar.lz
gsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.tar.xz
gsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.tar.zst
gsoc2013-evolution-cbfab0548de9712d1ca1acca840bbfa76ccb2e93.zip
Coding style and whitespace cleanups.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mail-notification/mail-notification.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c
index 9bc8458eb4..c42473acc7 100644
--- a/plugins/mail-notification/mail-notification.c
+++ b/plugins/mail-notification/mail-notification.c
@@ -466,7 +466,7 @@ can_support_actions (void)
caps = notify_get_server_caps ();
if (caps != NULL) {
for (c = caps; c != NULL; c = c->next) {
- if (strcmp ((char*)c->data, "actions") == 0) {
+ if (strcmp ((gchar *)c->data, "actions") == 0) {
supports_actions = TRUE;
break;
}
@@ -531,7 +531,7 @@ new_notify_status (EMEventTargetFolder *t)
notify_notification_set_timeout (notify, NOTIFY_EXPIRES_DEFAULT);
notify_notification_add_action(notify, "default", "Default", notifyActionCallback, NULL, NULL);
g_timeout_add (500, notification_callback, notify);
- }
+ }
}
}
#endif