]> Pileus Git - ~andy/gtk/commitdiff
Bug 554950 – gail must make itself resident
authorMatthias Clasen <mclasen@redhat.com>
Tue, 7 Oct 2008 17:41:46 +0000 (17:41 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 7 Oct 2008 17:41:46 +0000 (17:41 +0000)
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

modules/other/gail/ChangeLog
modules/other/gail/gail.c

index 07282060af31731268c075ffd1d800898f1167b0..19cb023fca88a92c35397aef98826f3441332215 100644 (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/
index 4b26b2eeff2ebfa19aacdf8b8e427ce62ec45052..ac27f0ba3578c2b0377c5df46450adab9f197c52 100644 (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;
+}