From 30b7ce2e63080fca1db9bdf2dd82955ce7ad2cc7 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Sun, 23 Oct 2016 18:39:57 -0400 Subject: Refactor notification code to remove duplicate function The desktop icon eject code required a function in libcaja-private so we no longer need it in caja-application.c --- src/caja-application.c | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'src/caja-application.c') diff --git a/src/caja-application.c b/src/caja-application.c index e1d8a892..dff984f3 100644 --- a/src/caja-application.c +++ b/src/caja-application.c @@ -159,36 +159,8 @@ struct _CajaApplicationPriv { gboolean force_desktop; gboolean autostart; gchar *geometry; - NotifyNotification *unmount_notify; }; -void -caja_application_notify_unmount_show (CajaApplication *application, - const gchar *message) -{ - gchar **strings; - - strings = g_strsplit (message, "\n", 0); - - if (application->priv->unmount_notify == NULL) { - application->priv->unmount_notify = - notify_notification_new (strings[0], strings[1], - "media-removable"); - - notify_notification_set_hint (application->priv->unmount_notify, - "transient", g_variant_new_boolean (TRUE)); - notify_notification_set_urgency (application->priv->unmount_notify, - NOTIFY_URGENCY_CRITICAL); - } else { - notify_notification_update (application->priv->unmount_notify, - strings[0], strings[1], - "media-removable"); - } - - notify_notification_show (application->priv->unmount_notify, NULL); - g_strfreev (strings); -} - #else G_DEFINE_TYPE (CajaApplication, caja_application, G_TYPE_OBJECT); -- cgit v1.2.1