Documentation updates.

This commit is contained in:
Matthias Clasen
2002-10-11 01:04:45 +00:00
parent c711f604d3
commit 5591c434f8
15 changed files with 89 additions and 16 deletions

View File

@ -1,3 +1,11 @@
2002-10-11 Matthias Clasen <maclas@gmx.de>
* gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_format): Remove
unused variable.
* gdk-pixbuf-io.h: Remove unused typedef
GdkPixbufModuleGetSignatureFunc.
2002-10-04 jacob berkman <jacob@ximian.com>
* queryloaders.c (query_module): make legal C

View File

@ -106,7 +106,6 @@ struct _GdkPixbufModule {
typedef void (* GdkPixbufModuleFillVtableFunc) (GdkPixbufModule *module);
typedef void (* GdkPixbufModuleFillInfoFunc) (GdkPixbufFormat *info);
typedef const GdkPixbufModulePattern *(* GdkPixbufModuleGetSignatureFunc) (void);
/* key/value pairs that can be attached by the pixbuf loader */

View File

@ -660,7 +660,6 @@ GdkPixbufFormat *
gdk_pixbuf_loader_get_format (GdkPixbufLoader *loader)
{
GdkPixbufLoaderPrivate *priv;
gboolean retval = TRUE;
g_return_val_if_fail (loader != NULL, NULL);
g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), NULL);