replace deprecated GTK+ calls (fixes bug #571869). Patch from Felix
2009-03-08 Lucas Rocha <lucasr@gnome.org> * configure.in, src/notification.c: replace deprecated GTK+ calls (fixes bug #571869). Patch from Felix Riemann <friemann@svn.gnome.org>. svn path=/trunk/; revision=1488
This commit is contained in:
parent
9df2eda37f
commit
6dd1d4b5e6
@ -1,3 +1,9 @@
|
||||
2009-03-08 Lucas Rocha <lucasr@gnome.org>
|
||||
|
||||
* configure.in, src/notification.c: replace deprecated
|
||||
GTK+ calls (fixes bug #571869).
|
||||
Patch from Felix Riemann <friemann@svn.gnome.org>.
|
||||
|
||||
2009-03-08 Lucas Rocha <lucasr@gnome.org>
|
||||
|
||||
* src/zenity.glade: remove deprecated/obsoleted dialog
|
||||
|
@ -16,7 +16,7 @@ IT_PROG_INTLTOOL([0.40.0])
|
||||
|
||||
AC_PROG_CC
|
||||
|
||||
GTK_REQUIRED=2.9.2
|
||||
GTK_REQUIRED=2.15.1
|
||||
|
||||
PKG_CHECK_MODULES([ZENITY],[gtk+-2.0 >= $GTK_REQUIRED libglade-2.0 libgnomecanvas-2.0 glib-2.0])
|
||||
AC_SUBST([ZENITY_CFLAGS])
|
||||
|
@ -198,7 +198,7 @@ zenity_notification_handle_stdin (GIOChannel *channel,
|
||||
}
|
||||
} else if (!g_ascii_strcasecmp (command, "tooltip")) {
|
||||
if (g_utf8_validate (value, -1, NULL)) {
|
||||
gtk_status_icon_set_tooltip (status_icon, value);
|
||||
gtk_status_icon_set_tooltip_text (status_icon, value);
|
||||
} else {
|
||||
g_warning ("Invalid UTF-8 in input!");
|
||||
}
|
||||
@ -247,9 +247,9 @@ zenity_notification (ZenityData *data, ZenityNotificationData *notification_data
|
||||
G_CALLBACK (zenity_notification_icon_size_changed_cb), data);
|
||||
|
||||
if (notification_data->notification_text) {
|
||||
gtk_status_icon_set_tooltip (status_icon, notification_data->notification_text);
|
||||
gtk_status_icon_set_tooltip_text (status_icon, notification_data->notification_text);
|
||||
} else {
|
||||
gtk_status_icon_set_tooltip (status_icon, _("Zenity notification"));
|
||||
gtk_status_icon_set_tooltip_text (status_icon, _("Zenity notification"));
|
||||
}
|
||||
|
||||
icon_file = g_strdup (data->window_icon);
|
||||
|
Reference in New Issue
Block a user