* w3mimg/fb/fb_gdkpixbuf.c (fb_image_load):
fix unused variable `i' * w3mimg/x11/x11_w3mimg.c (x11_load_image): ditto
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2004-11-09 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||||
|
|
||||||
|
* w3mimg/fb/fb_gdkpixbuf.c (fb_image_load):
|
||||||
|
fix unused variable `i'
|
||||||
|
* w3mimg/x11/x11_w3mimg.c (x11_load_image):
|
||||||
|
ditto
|
||||||
|
|
||||||
2004-11-09 Hiroyuki Ito <ZXB01226@nifty.com>
|
2004-11-09 Hiroyuki Ito <ZXB01226@nifty.com>
|
||||||
|
|
||||||
* [w3m-dev 04128] Re: w3mimgdisplay
|
* [w3m-dev 04128] Re: w3mimgdisplay
|
||||||
@@ -8605,4 +8612,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
|||||||
* release-0-2-1
|
* release-0-2-1
|
||||||
* import w3m-0.2.1
|
* import w3m-0.2.1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.941 2004/11/08 17:08:09 ukai Exp $
|
$Id: ChangeLog,v 1.942 2004/11/08 17:14:06 ukai Exp $
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: fb_gdkpixbuf.c,v 1.20 2004/11/08 17:08:10 ukai Exp $ */
|
/* $Id: fb_gdkpixbuf.c,v 1.21 2004/11/08 17:14:06 ukai Exp $ */
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
fb_gdkpixbuf.c 0.3 Copyright (C) 2002, hito
|
fb_gdkpixbuf.c 0.3 Copyright (C) 2002, hito
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
@@ -118,10 +118,11 @@ fb_image_load(char *filename, int w, int h, int max_anim)
|
|||||||
GdkPixbufAnimationIter *iter;
|
GdkPixbufAnimationIter *iter;
|
||||||
GTimeVal time;
|
GTimeVal time;
|
||||||
#else
|
#else
|
||||||
|
int i;
|
||||||
GList *frames;
|
GList *frames;
|
||||||
#endif
|
#endif
|
||||||
double ratio_w, ratio_h;
|
double ratio_w, ratio_h;
|
||||||
int n, i, j, fw, fh, frame_num, delay;
|
int n, j, fw, fh, frame_num, delay;
|
||||||
FB_IMAGE **fb_frame = NULL, *tmp_image = NULL;
|
FB_IMAGE **fb_frame = NULL, *tmp_image = NULL;
|
||||||
|
|
||||||
if (filename == NULL)
|
if (filename == NULL)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: x11_w3mimg.c,v 1.28 2004/11/08 17:08:10 ukai Exp $ */
|
/* $Id: x11_w3mimg.c,v 1.29 2004/11/08 17:14:06 ukai Exp $ */
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@@ -330,7 +330,7 @@ x11_load_image(w3mimg_op * self, W3MImage * img, char *fname, int w, int h)
|
|||||||
Imlib_Image im;
|
Imlib_Image im;
|
||||||
#elif defined(USE_GDKPIXBUF)
|
#elif defined(USE_GDKPIXBUF)
|
||||||
GdkPixbufAnimation *animation;
|
GdkPixbufAnimation *animation;
|
||||||
int i, j, iw, ih, n, frame_num, delay = -1, max_anim;
|
int j, iw, ih, n, frame_num, delay = -1, max_anim;
|
||||||
double ratio_w, ratio_h;
|
double ratio_w, ratio_h;
|
||||||
struct x11_image *ximg;
|
struct x11_image *ximg;
|
||||||
Pixmap tmp_pixmap;
|
Pixmap tmp_pixmap;
|
||||||
@@ -338,6 +338,7 @@ x11_load_image(w3mimg_op * self, W3MImage * img, char *fname, int w, int h)
|
|||||||
GdkPixbufAnimationIter *iter;
|
GdkPixbufAnimationIter *iter;
|
||||||
GTimeVal time;
|
GTimeVal time;
|
||||||
#else
|
#else
|
||||||
|
int i;
|
||||||
GList *frames;
|
GList *frames;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user