diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 7 | ||||
-rw-r--r-- | gtk/gtkmodules.c | 2 |
3 files changed, 15 insertions, 1 deletions
@@ -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; |