]> Pileus Git - ~andy/gtk/commitdiff
revert a change that causes a11y regressions in OOo
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 17 Aug 2006 19:17:14 +0000 (19:17 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 17 Aug 2006 19:17:14 +0000 (19:17 +0000)
ChangeLog
ChangeLog.pre-2-10
gtk/gtkmodules.c

index dc2a411dcaee370a4f284d3f90aac4a8fab9a684..e75713e8b6c50fd52688fddef0683fb72297bd84 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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
index dc2a411dcaee370a4f284d3f90aac4a8fab9a684..e75713e8b6c50fd52688fddef0683fb72297bd84 100644 (file)
@@ -1,3 +1,10 @@
+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
index 359cd8b678c0034d696ae0849c0bffa858b04134..33020f72fb498a5c9101ae4c08d7ad33086ef5a4 100644 (file)
@@ -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;