Add missing static qualifiers apparently causing problems on some
2003-03-21 Matthias Clasen <maclas@gmx.de> * io-jpeg.c (gdk_pixbuf__jpeg_image_begin_load): * io-ico.c (gdk_pixbuf__ico_image_stop_load): Add missing static qualifiers apparently causing problems on some platforms. (#108617)
This commit is contained in:
committed by
Matthias Clasen
parent
6b76b0cc9b
commit
b6d19fe207
@ -1,3 +1,9 @@
|
|||||||
|
2003-03-21 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* io-jpeg.c (gdk_pixbuf__jpeg_image_begin_load):
|
||||||
|
* io-ico.c (gdk_pixbuf__ico_image_stop_load): Add missing static
|
||||||
|
qualifiers apparently causing problems on some platforms. (#108617)
|
||||||
|
|
||||||
2003-03-11 Matthias Clasen <maclas@gmx.de>
|
2003-03-11 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* io-ico.c (DecodeHeader): Calculate LineWidth for 16bpp from
|
* io-ico.c (DecodeHeader): Calculate LineWidth for 16bpp from
|
||||||
|
|||||||
@ -491,7 +491,8 @@ gdk_pixbuf__ico_image_begin_load(GdkPixbufModuleSizeFunc size_func,
|
|||||||
*
|
*
|
||||||
* free context, unref gdk_pixbuf
|
* free context, unref gdk_pixbuf
|
||||||
*/
|
*/
|
||||||
gboolean gdk_pixbuf__ico_image_stop_load(gpointer data,
|
static gboolean
|
||||||
|
gdk_pixbuf__ico_image_stop_load(gpointer data,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
struct ico_progressive_state *context =
|
struct ico_progressive_state *context =
|
||||||
|
|||||||
@ -449,7 +449,7 @@ skip_input_data (j_decompress_ptr cinfo, long num_bytes)
|
|||||||
* return context (opaque to user)
|
* return context (opaque to user)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
gpointer
|
static gpointer
|
||||||
gdk_pixbuf__jpeg_image_begin_load (GdkPixbufModuleSizeFunc size_func,
|
gdk_pixbuf__jpeg_image_begin_load (GdkPixbufModuleSizeFunc size_func,
|
||||||
GdkPixbufModulePreparedFunc prepared_func,
|
GdkPixbufModulePreparedFunc prepared_func,
|
||||||
GdkPixbufModuleUpdatedFunc updated_func,
|
GdkPixbufModuleUpdatedFunc updated_func,
|
||||||
|
|||||||
Reference in New Issue
Block a user