summaryrefslogtreecommitdiff
path: root/modules/other
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2008-10-07 17:41:46 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-10-07 17:41:46 +0000
commit8ecf7d04e1555d569455d2fa91ca6c711ee78a74 (patch)
tree29b881a298a0fb0a97fba1eaee23f6016bdb8591 /modules/other
parentaa70a0a619e064d1fdcb82fc02c9d2ecad13f776 (diff)
downloadgdk-pixbuf-8ecf7d04e1555d569455d2fa91ca6c711ee78a74.tar.gz
Bug 554950 – gail must make itself resident
2008-10-07 Matthias Clasen <mclasen@redhat.com> Bug 554950 – gail must make itself resident * gail.c: Make the module resident, since it can't handle being unloaded. svn path=/trunk/; revision=21601
Diffstat (limited to 'modules/other')
-rw-r--r--modules/other/gail/ChangeLog7
-rw-r--r--modules/other/gail/gail.c9
2 files changed, 16 insertions, 0 deletions
diff --git a/modules/other/gail/ChangeLog b/modules/other/gail/ChangeLog
index 07282060a..19cb023fc 100644
--- a/modules/other/gail/ChangeLog
+++ b/modules/other/gail/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-07 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 554950 – gail must make itself resident
+
+ * gail.c: Make the module resident, since it can't handle
+ being unloaded.
+
2008-09-22 Michael Natterer <mitch@imendio.com>
* tests/ferret.c: s/GTK_SIGNAL_FUNC/G_CALLBACK/
diff --git a/modules/other/gail/gail.c b/modules/other/gail/gail.c
index 4b26b2eef..ac27f0ba3 100644
--- a/modules/other/gail/gail.c
+++ b/modules/other/gail/gail.c
@@ -980,3 +980,12 @@ gtk_module_init (gint *argc, char** argv[])
return 0;
}
+
+const char *
+g_module_check_init (GModule *module)
+{
+ g_module_make_resident (module);
+
+ return NULL;
+}
+