From 762615b27c7985e028f1873f99eae00e42061897 Mon Sep 17 00:00:00 2001 From: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com> Date: Thu, 26 Mar 2009 15:16:21 -0400 Subject: [PATCH] Fix #721 --- sflphone-gtk/src/sflnotify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sflphone-gtk/src/sflnotify.c b/sflphone-gtk/src/sflnotify.c index ebcccd38c5..2b86e308d9 100644 --- a/sflphone-gtk/src/sflnotify.c +++ b/sflphone-gtk/src/sflnotify.c @@ -182,7 +182,7 @@ notify_no_accounts( ) notify_notification_attach_to_status_icon( notification , get_status_icon() ); #endif notify_notification_set_timeout( notification , NOTIFY_EXPIRES_DEFAULT ); - notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL ); + //notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL ); if (!notify_notification_show (notification, NULL)) { g_print("notify(), failed to send notification\n"); @@ -223,7 +223,7 @@ notify_no_registered_accounts( ) notify_notification_attach_to_status_icon( notification , get_status_icon() ); #endif notify_notification_set_timeout( notification , NOTIFY_EXPIRES_DEFAULT ); - notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL ); + //notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL ); if (!notify_notification_show (notification, NULL)) { g_print("notify(), failed to send notification\n"); -- GitLab