Remove duplicate paragraph. (#45786, Ruben Vermeersch)

2007-07-09  Matthias Clasen <mclasen@redhat.com>

        * tmpl/modules.sgml: Remove duplicate paragraph.
        (#45786, Ruben Vermeersch)

        * tmpl/modules.sgml: Remove duplicate code from
        an example. (#454785, Ruben Vermeersch)


svn path=/trunk/; revision=5612
This commit is contained in:
Matthias Clasen 2007-07-09 17:54:38 +00:00 committed by Matthias Clasen
parent 964471d184
commit aff06ab1d1
2 changed files with 8 additions and 11 deletions

View File

@ -1,3 +1,11 @@
2007-07-09 Matthias Clasen <mclasen@redhat.com>
* tmpl/modules.sgml: Remove duplicate paragraph.
(#45786, Ruben Vermeersch)
* tmpl/modules.sgml: Remove duplicate code from
an example. (#454785, Ruben Vermeersch)
Mon Jul 9 10:23:53 2007 Tim Janik <timj@imendio.com>
* gobject/tmpl/gclosure.sgml: GClosure docu fixes from Guillaume

View File

@ -79,14 +79,6 @@ just_say_hello (const char *filename, GError **error)
return FALSE;
}
if (say_hello == NULL)
{
g_set_error (error, SAY_ERROR, SAY_ERROR_OPEN, "symbol say_hello is NULL");
if (!g_module_close (module))
g_warning ("&percnt;s: &percnt;s", filename, g_module_error (<!-- -->));
return FALSE;
}
/* call our function in the module */
say_hello ("Hello world!");
@ -196,9 +188,6 @@ Gets a symbol pointer from a module.
<para>
Note that a valid symbol can be %NULL.
</para>
<para>
Note that a valid symbol can be %NULL.
</para>
@module: a #GModule.
@symbol_name: the name of the symbol to find.