[gtk+] gail: don't use removed GtkTooltips API
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] gail: don't use removed GtkTooltips API
- Date: Tue, 8 Jun 2010 19:31:23 +0000 (UTC)
commit bffd85c2b7f8af51744fb9c57f5d69965f5f4af3
Author: Michael Natterer <mitch gimp org>
Date: Tue Jun 8 21:29:52 2010 +0200
gail: don't use removed GtkTooltips API
In the absence of new API to port to, left the code in a useless
if(FALSE /* FIXME */) state, for somebody with better gail knowledge
to fix.
modules/other/gail/gailwindow.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/modules/other/gail/gailwindow.c b/modules/other/gail/gailwindow.c
index a4947e6..e3e3703 100644
--- a/modules/other/gail/gailwindow.c
+++ b/modules/other/gail/gailwindow.c
@@ -223,8 +223,8 @@ gail_window_real_initialize (AtkObject *obj,
const gchar *name;
name = gtk_widget_get_name (widget);
- if (name && (!strcmp (name, "gtk-tooltip") ||
- !strcmp (name, "gtk-tooltips")))
+
+ if (!g_strcmp0 (name, "gtk-tooltip"))
obj->role = ATK_ROLE_TOOL_TIP;
else if (GTK_IS_PLUG (widget))
obj->role = ATK_ROLE_PANEL;
@@ -416,7 +416,7 @@ gail_window_ref_relation_set (AtkObject *obj)
{
atk_relation_set_remove (relation_set, relation);
}
- if (gtk_widget_get_visible(widget) && gtk_tooltips_get_info_from_tip_window (GTK_WINDOW (widget), NULL, ¤t_widget))
+ if (gtk_widget_get_visible(widget) && FALSE /* FIXME gtk_tooltips_get_info_from_tip_window (GTK_WINDOW (widget), NULL, ¤t_widget) */)
{
array [0] = gtk_widget_get_accessible (current_widget);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]