forked from AuroraMiddleware/gtk
revert a change that causes a11y regressions in OOo
This commit is contained in:
parent
ffd0459bc2
commit
0bc1d2323f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user