revert a change that causes a11y regressions in OOo

This commit is contained in:
Matthias Clasen 2006-08-17 19:17:14 +00:00
parent ffd0459bc2
commit 0bc1d2323f
3 changed files with 15 additions and 1 deletions

View 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

View 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

View 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;