Import of pkgsrc-2014Q1
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
$NetBSD: patch-plugins_a11y-keyboard_gsd-a11y-keyboard-manager.c,v 1.1 2013/08/12 09:10:09 obache Exp $
|
||||
|
||||
* Require libnotify 0.6.0
|
||||
https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=e1ab570b0dce479ba235e5542ea07d1b5bafc4c9
|
||||
|
||||
--- plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c.orig 2010-11-15 13:10:51.000000000 +0000
|
||||
+++ plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c
|
||||
@@ -608,9 +608,7 @@ ax_slowkeys_warning_post_bubble (GsdA11y
|
||||
gsd_a11y_keyboard_manager_ensure_status_icon (manager);
|
||||
manager->priv->notification = notify_notification_new (title,
|
||||
message,
|
||||
- "preferences-desktop-accessibility",
|
||||
- NULL);
|
||||
- notify_notification_attach_to_status_icon (manager->priv->notification, manager->priv->status_icon);
|
||||
+ "preferences-desktop-accessibility");
|
||||
notify_notification_set_timeout (manager->priv->notification, NOTIFICATION_TIMEOUT * 1000);
|
||||
|
||||
notify_notification_add_action (manager->priv->notification,
|
||||
@@ -747,9 +745,7 @@ ax_stickykeys_warning_post_bubble (GsdA1
|
||||
gsd_a11y_keyboard_manager_ensure_status_icon (manager);
|
||||
manager->priv->notification = notify_notification_new (title,
|
||||
message,
|
||||
- "preferences-desktop-accessibility",
|
||||
- NULL);
|
||||
- notify_notification_attach_to_status_icon (manager->priv->notification, manager->priv->status_icon);
|
||||
+ "preferences-desktop-accessibility");
|
||||
notify_notification_set_timeout (manager->priv->notification, NOTIFICATION_TIMEOUT * 1000);
|
||||
|
||||
notify_notification_add_action (manager->priv->notification,
|
||||
@@ -0,0 +1,27 @@
|
||||
$NetBSD: patch-plugins_xrandr_gsd-xrandr-manager.c,v 1.1 2013/08/12 09:10:09 obache Exp $
|
||||
|
||||
* Require libnotify 0.6.0
|
||||
https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=e1ab570b0dce479ba235e5542ea07d1b5bafc4c9
|
||||
|
||||
--- plugins/xrandr/gsd-xrandr-manager.c.orig 2010-11-15 13:11:00.000000000 +0000
|
||||
+++ plugins/xrandr/gsd-xrandr-manager.c
|
||||
@@ -1086,16 +1086,9 @@ error_message (GsdXrandrManager *mgr, co
|
||||
|
||||
g_assert (error_to_display == NULL || secondary_text == NULL);
|
||||
|
||||
- if (priv->status_icon)
|
||||
- notification = notify_notification_new_with_status_icon (primary_text,
|
||||
- error_to_display ? error_to_display->message : secondary_text,
|
||||
- GSD_XRANDR_ICON_NAME,
|
||||
- priv->status_icon);
|
||||
- else
|
||||
- notification = notify_notification_new (primary_text,
|
||||
- error_to_display ? error_to_display->message : secondary_text,
|
||||
- GSD_XRANDR_ICON_NAME,
|
||||
- NULL);
|
||||
+ notification = notify_notification_new (primary_text,
|
||||
+ error_to_display ? error_to_display->message : secondary_text,
|
||||
+ GSD_XRANDR_ICON_NAME);
|
||||
|
||||
notify_notification_show (notification, NULL); /* NULL-GError */
|
||||
#else
|
||||
Reference in New Issue
Block a user