[ekiga] Remove unnecessary line to solve a compile error with old libnotify



commit b12a729c1e4bb490d1ef39216fd2705ed2344d42
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date:   Mon Sep 24 09:51:19 2012 +0200

    Remove unnecessary line to solve a compile error with old libnotify
    
    If notify_notification_set_app_name() is not called, the app name will
    be set from the value used in notify_init() anyway, which is the same.

 lib/engine/components/libnotify/libnotify-main.cpp |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
---
diff --git a/lib/engine/components/libnotify/libnotify-main.cpp b/lib/engine/components/libnotify/libnotify-main.cpp
index 46944d6..dee1989 100644
--- a/lib/engine/components/libnotify/libnotify-main.cpp
+++ b/lib/engine/components/libnotify/libnotify-main.cpp
@@ -241,7 +241,6 @@ LibNotify::on_call_notification (boost::shared_ptr<Ekiga::CallManager> manager,
                                     );
   notify_notification_add_action (notify, "reject", _("Reject"), call_notification_action_cb, call.get (), NULL);
   notify_notification_add_action (notify, "accept", _("Accept"), call_notification_action_cb, call.get (), NULL);
-  notify_notification_set_app_name (notify, "Ekiga");
   notify_notification_set_hint (notify, "transient", g_variant_new_boolean (TRUE));
   notify_notification_set_timeout (notify, NOTIFY_EXPIRES_NEVER);
   notify_notification_set_urgency (notify, NOTIFY_URGENCY_CRITICAL);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]