]> spindle.queued.net Git - midori/commitdiff
Eliminate 'send' flag from midori_app_send_notification
authorChristian Dywan <christian@twotoasts.de>
Thu, 14 Oct 2010 19:14:28 +0000 (21:14 +0200)
committerChristian Dywan <christian@twotoasts.de>
Thu, 14 Oct 2010 19:14:28 +0000 (21:14 +0200)
The declaration is misplaced and the logic actually makes
no sense.

midori/midori-app.c

index 14f10ca03756878f251af7b0b9c304b42e0d5fe0..d3b75836c11055dc207ccb5d6e62f060c8dcea46 100644 (file)
@@ -1199,21 +1199,18 @@ midori_app_send_notification (MidoriApp*   app,
     #if HAVE_HILDON
     hildon_banner_show_information_with_markup (GTK_WIDGET (app->browser),
                                                 "midori", message);
-    #else
-    gboolean sent = FALSE;
-
-    #if HAVE_LIBNOTIFY
+    #elif HAVE_LIBNOTIFY
     if (notify_is_initted ())
     {
         NotifyNotification* note;
 
         note = notify_notification_new (title, message, "midori", NULL);
-        sent = notify_notification_show (note, NULL);
+        notify_notification_show (note, NULL);
         g_object_unref (note);
     }
     #else
     /* Fall back to the command line program "notify-send" */
-    if (!sent && app->program_notify_send)
+    if (app->program_notify_send)
     {
         gchar* msgq = g_shell_quote (message);
         gchar* titleq = g_shell_quote (title);
@@ -1227,5 +1224,4 @@ midori_app_send_notification (MidoriApp*   app,
         g_free (command);
     }
     #endif
-    #endif
 }