[ekiga] Notifications: Some reindentation.
- From: Damien Sandras <dsandras src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] Notifications: Some reindentation.
- Date: Sat, 21 Apr 2012 16:23:14 +0000 (UTC)
commit 08f10f957f7ccb94a1c5702d898ed4ed12cfc95f
Author: Damien Sandras <dsandras beip be>
Date: Sat Apr 21 18:13:52 2012 +0200
Notifications: Some reindentation.
lib/engine/components/libnotify/libnotify-main.cpp | 31 +++++++++----------
1 files changed, 15 insertions(+), 16 deletions(-)
---
diff --git a/lib/engine/components/libnotify/libnotify-main.cpp b/lib/engine/components/libnotify/libnotify-main.cpp
index 1630070..7c475b3 100644
--- a/lib/engine/components/libnotify/libnotify-main.cpp
+++ b/lib/engine/components/libnotify/libnotify-main.cpp
@@ -133,39 +133,39 @@ on_notif_closed (NotifyNotification* /*notif*/,
void
LibNotify::on_notification_added (boost::shared_ptr<Ekiga::Notification> notification)
{
- NotifyNotification* notif = NULL;
- notif = notify_notification_new (notification->get_title ().c_str (),
- notification->get_body ().c_str (),
- "ekiga"
-// NOTIFY_CHECK_VERSION appeared in 0.5.2 only
+ NotifyNotification* notif = notify_notification_new (notification->get_title ().c_str (),
+ notification->get_body ().c_str (),
+ "ekiga"
+ // NOTIFY_CHECK_VERSION appeared in 0.5.2 only
#ifdef NOTIFY_CHECK_VERSION
#if !NOTIFY_CHECK_VERSION(0,7,0)
- , NULL
+ , NULL
#endif
#else
- , NULL
+ , NULL
#endif
- );
+ );
switch (notification->get_level ()) {
- case Ekiga::Notification::Info:
- case Ekiga::Notification::Warning:
- break;
-
case Ekiga::Notification::Error:
-
notify_notification_set_urgency (notif, NOTIFY_URGENCY_CRITICAL);
break;
+
+ case Ekiga::Notification::Info:
+ case Ekiga::Notification::Warning:
+ default:
+ break;
}
g_signal_connect (notif, "closed",
G_CALLBACK (on_notif_closed), notification.get ());
- boost::signals::connection conn = notification->removed.connect (boost::bind (&LibNotify::on_notification_removed, this, notification));
+ boost::signals::connection conn =
+ notification->removed.connect (boost::bind (&LibNotify::on_notification_removed, this, notification));
live[notification] = std::pair<boost::signals::connection, boost::shared_ptr<NotifyNotification> > (conn, boost::shared_ptr<NotifyNotification> (notif, g_object_unref));
- (void)notify_notification_show (notif, NULL);
+ notify_notification_show (notif, NULL);
}
void
@@ -174,7 +174,6 @@ LibNotify::on_notification_removed (boost::shared_ptr<Ekiga::Notification> notif
container_type::iterator iter = live.find (notification);
if (iter != live.end ()) {
-
iter->second.first.disconnect ();
live.erase (iter);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]