comparison src/gtkconv.c @ 8496:f07fbdfbe2e0

[gaim-migrate @ 9231] Remove some printfs. Hopefully we'll release Thursday? committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 24 Mar 2004 01:50:32 +0000
parents 6d0869404696
children 887c0259b47b
comparison
equal deleted inserted replaced
8495:a88124e46fc6 8496:f07fbdfbe2e0
5103 } 5103 }
5104 return; 5104 return;
5105 } 5105 }
5106 else 5106 else
5107 gtkconv->u.im->anim = 5107 gtkconv->u.im->anim =
5108 gdk_pixbuf_animation_new_from_file(iconfile, &err); 5108 gdk_pixbuf_animation_new_from_file(iconfile, &err); /* LEAK */
5109 } 5109 }
5110 } 5110 }
5111 else 5111 else
5112 { 5112 {
5113 GaimBuddyIcon *icon = gaim_conv_im_get_icon(GAIM_CONV_IM(conv)); 5113 GaimBuddyIcon *icon = gaim_conv_im_get_icon(GAIM_CONV_IM(conv));
5149 if (gdk_pixbuf_animation_is_static_image(gtkconv->u.im->anim)) { 5149 if (gdk_pixbuf_animation_is_static_image(gtkconv->u.im->anim)) {
5150 gtkconv->u.im->iter = NULL; 5150 gtkconv->u.im->iter = NULL;
5151 buf = gdk_pixbuf_animation_get_static_image(gtkconv->u.im->anim); 5151 buf = gdk_pixbuf_animation_get_static_image(gtkconv->u.im->anim);
5152 } else { 5152 } else {
5153 gtkconv->u.im->iter = 5153 gtkconv->u.im->iter =
5154 gdk_pixbuf_animation_get_iter(gtkconv->u.im->anim, NULL); 5154 gdk_pixbuf_animation_get_iter(gtkconv->u.im->anim, NULL); /* LEAK */
5155 buf = gdk_pixbuf_animation_iter_get_pixbuf(gtkconv->u.im->iter); 5155 buf = gdk_pixbuf_animation_iter_get_pixbuf(gtkconv->u.im->iter);
5156 if (gtkconv->u.im->animate) 5156 if (gtkconv->u.im->animate)
5157 start_anim(NULL, conv); 5157 start_anim(NULL, conv);
5158 } 5158 }
5159 5159