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
This commit is contained in:
Matthias Clasen 2008-10-07 17:41:46 +00:00 committed by Matthias Clasen
parent aa70a0a619
commit 8ecf7d04e1
2 changed files with 16 additions and 0 deletions

View File

@ -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/

View File

@ -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;
}