summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2006-08-17 19:17:14 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-08-17 19:17:14 +0000
commit0bc1d2323f0244096823be7dbd35336ff02de0c1 (patch)
tree44701f81c3d2f8a06fb13aed8a3f1c70e9249a1e
parentffd0459bc213606723c3b15983707ce22e805f08 (diff)
downloadgdk-pixbuf-0bc1d2323f0244096823be7dbd35336ff02de0c1.tar.gz
revert a change that causes a11y regressions in OOo
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLog.pre-2-107
-rw-r--r--gtk/gtkmodules.c2
3 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dc2a411dc..e75713e8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2006-08-17 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkmodules.c (find_module): Revert the local binding
+ change to avoid a11y regressions in current OpenOffice.org
+ releases. The G_MODULE_BIND_LOCAL will be reintroduced
+ in 2.12.
+
+2006-08-17 Matthias Clasen <mclasen@redhat.com>
+
* gtk/gtktrayicon-x11.c: Fix the ClientMessages we are
sending to the notification area to be more in sync with
the systray spec. (#350860, Wincent Untz)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index dc2a411dc..e75713e8b 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,12 @@
2006-08-17 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkmodules.c (find_module): Revert the local binding
+ change to avoid a11y regressions in current OpenOffice.org
+ releases. The G_MODULE_BIND_LOCAL will be reintroduced
+ in 2.12.
+
+2006-08-17 Matthias Clasen <mclasen@redhat.com>
+
* gtk/gtktrayicon-x11.c: Fix the ClientMessages we are
sending to the notification area to be more in sync with
the systray spec. (#350860, Wincent Untz)
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c
index 359cd8b67..33020f72f 100644
--- a/gtk/gtkmodules.c
+++ b/gtk/gtkmodules.c
@@ -236,7 +236,7 @@ find_module (const gchar *name)
module_name = g_module_build_path (NULL, name);
}
- module = g_module_open (module_name, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
+ module = g_module_open (module_name, G_MODULE_BIND_LAZY);
g_free(module_name);
return module;