diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-26 15:34:55 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-26 15:34:55 +0000 |
commit | 5eeb41077981c2cc69b09cbe37b5ed8a381cb6e7 (patch) | |
tree | 096d104885c7a07e182366c06debe74bfc71cbb8 /w3mimg/fb/fb_gdkpixbuf.c | |
parent | [w3m-dev 03833] gif animation with no delay_time (diff) | |
download | w3m-5eeb41077981c2cc69b09cbe37b5ed8a381cb6e7.tar.gz w3m-5eeb41077981c2cc69b09cbe37b5ed8a381cb6e7.zip |
fix indent
Diffstat (limited to 'w3mimg/fb/fb_gdkpixbuf.c')
-rw-r--r-- | w3mimg/fb/fb_gdkpixbuf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/w3mimg/fb/fb_gdkpixbuf.c b/w3mimg/fb/fb_gdkpixbuf.c index 2242551..ca20b5c 100644 --- a/w3mimg/fb/fb_gdkpixbuf.c +++ b/w3mimg/fb/fb_gdkpixbuf.c @@ -1,4 +1,4 @@ -/* $Id: fb_gdkpixbuf.c,v 1.11 2003/03/26 15:14:23 ukai Exp $ */ +/* $Id: fb_gdkpixbuf.c,v 1.12 2003/03/26 15:34:55 ukai Exp $ */ /************************************************************************** fb_gdkpixbuf.c 0.3 Copyright (C) 2002, hito **************************************************************************/ @@ -12,7 +12,7 @@ static void draw(FB_IMAGE * img, int bg, int x, int y, int w, int h, static GdkPixbuf *resize_image(GdkPixbuf * pixbuf, int width, int height); static void -get_animation_size(GdkPixbufAnimation *animation, int *w, int *h) +get_animation_size(GdkPixbufAnimation * animation, int *w, int *h) { GList *frames; int iw, ih, n, i; @@ -28,9 +28,9 @@ get_animation_size(GdkPixbufAnimation *animation, int *w, int *h) frame = (GdkPixbufFrame *) g_list_nth_data(frames, i); pixbuf = gdk_pixbuf_frame_get_pixbuf(frame); iw = gdk_pixbuf_frame_get_x_offset(frame) - +gdk_pixbuf_get_width(pixbuf); + + gdk_pixbuf_get_width(pixbuf); ih = gdk_pixbuf_frame_get_y_offset(frame) - + gdk_pixbuf_get_height(pixbuf); + + gdk_pixbuf_get_height(pixbuf); if (iw > *w) *w = iw; if (ih > *h) |