fix a warning
This commit is contained in:
parent
68bab3e935
commit
502b883ca1
@ -1,6 +1,6 @@
|
|||||||
Name: gnome-settings-daemon
|
Name: gnome-settings-daemon
|
||||||
Version: 2.25.90
|
Version: 2.25.90
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
|
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
|
||||||
|
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -38,6 +38,9 @@ Patch10: gnome-settings-daemon-2.24.0-catch-deviceadded.patch
|
|||||||
# http://bugzilla.redhat.com/324721
|
# http://bugzilla.redhat.com/324721
|
||||||
#Patch11: gnome-settings-daemon-2.24.0-fix-touchpad.patch
|
#Patch11: gnome-settings-daemon-2.24.0-fix-touchpad.patch
|
||||||
|
|
||||||
|
# http://bugzilla.gnome.org/show_bug.cgi?id=570590
|
||||||
|
Patch12: notify-statusicon.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A daemon to share settings from GNOME to other applications. It also
|
A daemon to share settings from GNOME to other applications. It also
|
||||||
handles global keybindings, as well as a number of desktop-wide settings.
|
handles global keybindings, as well as a number of desktop-wide settings.
|
||||||
@ -59,6 +62,7 @@ developing applications that use %{name}.
|
|||||||
%patch10 -p1 -b .catch-deviceadded
|
%patch10 -p1 -b .catch-deviceadded
|
||||||
# This one is buggy, stop using for now
|
# This one is buggy, stop using for now
|
||||||
#%patch11 -p1 -b .fix-touchpad
|
#%patch11 -p1 -b .fix-touchpad
|
||||||
|
%patch12 -p1 -b .notify-statusicon
|
||||||
|
|
||||||
autoreconf -i -f
|
autoreconf -i -f
|
||||||
|
|
||||||
@ -160,6 +164,9 @@ fi
|
|||||||
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
|
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 5 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-2
|
||||||
|
- Fix a warning (#484132)
|
||||||
|
|
||||||
* Wed Feb 4 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-1
|
* Wed Feb 4 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-1
|
||||||
- Update to 2.25.90
|
- Update to 2.25.90
|
||||||
|
|
||||||
|
35
notify-statusicon.patch
Normal file
35
notify-statusicon.patch
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
diff -up gnome-settings-daemon-2.25.90/plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c.notify-statusicon gnome-settings-daemon-2.25.90/plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c
|
||||||
|
--- gnome-settings-daemon-2.25.90/plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c.notify-statusicon 2009-02-05 00:40:42.000000000 -0500
|
||||||
|
+++ gnome-settings-daemon-2.25.90/plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c 2009-02-05 00:48:26.000000000 -0500
|
||||||
|
@@ -544,10 +544,11 @@ ax_slowkeys_warning_post_bubble (GsdA11y
|
||||||
|
}
|
||||||
|
|
||||||
|
gsd_a11y_keyboard_manager_ensure_status_icon (manager);
|
||||||
|
- manager->priv->notification = notify_notification_new_with_status_icon (title,
|
||||||
|
- message,
|
||||||
|
- "preferences-desktop-accessibility",
|
||||||
|
- manager->priv->status_icon);
|
||||||
|
+ 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);
|
||||||
|
notify_notification_set_timeout (manager->priv->notification, NOTIFICATION_TIMEOUT * 1000);
|
||||||
|
|
||||||
|
notify_notification_add_action (manager->priv->notification,
|
||||||
|
@@ -688,10 +689,11 @@ ax_stickykeys_warning_post_bubble (GsdA1
|
||||||
|
}
|
||||||
|
|
||||||
|
gsd_a11y_keyboard_manager_ensure_status_icon (manager);
|
||||||
|
- manager->priv->notification = notify_notification_new_with_status_icon (title,
|
||||||
|
- message,
|
||||||
|
- "preferences-desktop-accessibility",
|
||||||
|
- manager->priv->status_icon);
|
||||||
|
+ 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);
|
||||||
|
notify_notification_set_timeout (manager->priv->notification, NOTIFICATION_TIMEOUT * 1000);
|
||||||
|
|
||||||
|
notify_notification_add_action (manager->priv->notification,
|
Loading…
Reference in New Issue
Block a user