* @title: title of the notification
* @message: text of the notification, or NULL
*
- * Send #message to the notification daemon to display it.
- * This is done by using libnotify if available or by using the program
- * "notify-send" as a fallback.
+ * Send #message to a notification service to display it.
*
- * There is no guarantee that the message have been sent and displayed, as
- * neither libnotify nor "notify-send" might be available or the
- * notification daemon might not be running.
+ * There is no guarantee that the message has been sent and displayed, as
+ * there might not be any notification service available.
*
* Since 0.1.7
**/
const gchar* title,
const gchar* message)
{
+ #if HAVE_HILDON
+ hildon_banner_show_information_with_markup (GTK_WIDGET (app->browser),
+ "midori", message);
+ #else
gboolean sent = FALSE;
g_return_if_fail (MIDORI_IS_APP (app));
g_free (msgq);
g_free (command);
}
+ #endif
}