summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLucas Rocha <lucasr@gnome.org>2009-03-08 22:04:02 +0000
committerLucas Almeida Rocha <lucasr@src.gnome.org>2009-03-08 22:04:02 +0000
commit6dd1d4b5e674014d1eeaad82d5b057e6537fc346 (patch)
treed98001cb23f8ccd563b71fb3daeb08cb8e631759 /src
parent9df2eda37fba550d5d13f8597454d25d1955fde7 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/notification.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notification.c b/src/notification.c
index b2ab18f..6c8f746 100644
--- a/src/notification.c
+++ b/src/notification.c
@@ -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);