Make it compile with C89 compilers.

Fri Jun 27 03:56:59 2003  Soeren Sandmann  <sandmann@daimi.au.dk>

	* io-gif-animation.c (gdk_pixbuf_gif_anim_frame_composite): Make
	it compile with C89 compilers.

Thu Jun 26 21:41:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>

	* gtk/gtktreeviewcolumn.c
	(gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
	and "is_expanded" if the new value is different fromt he old one.
This commit is contained in:
Soeren Sandmann 2003-06-27 02:38:44 +00:00 committed by Søren Sandmann Pedersen
parent 74275373e0
commit 8597f10089
8 changed files with 45 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Thu Jun 26 21:41:16 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtktreeviewcolumn.c
(gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
and "is_expanded" if the new value is different fromt he old one.
Wed Jun 25 18:59:15 BST 2003 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: Fix typos. Update

View File

@ -1,3 +1,9 @@
Thu Jun 26 21:41:16 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtktreeviewcolumn.c
(gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
and "is_expanded" if the new value is different fromt he old one.
Wed Jun 25 18:59:15 BST 2003 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: Fix typos. Update

View File

@ -1,3 +1,9 @@
Thu Jun 26 21:41:16 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtktreeviewcolumn.c
(gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
and "is_expanded" if the new value is different fromt he old one.
Wed Jun 25 18:59:15 BST 2003 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: Fix typos. Update

View File

@ -1,3 +1,9 @@
Thu Jun 26 21:41:16 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtktreeviewcolumn.c
(gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
and "is_expanded" if the new value is different fromt he old one.
Wed Jun 25 18:59:15 BST 2003 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: Fix typos. Update

View File

@ -1,3 +1,9 @@
Thu Jun 26 21:41:16 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtktreeviewcolumn.c
(gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
and "is_expanded" if the new value is different fromt he old one.
Wed Jun 25 18:59:15 BST 2003 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: Fix typos. Update

View File

@ -1,3 +1,8 @@
Fri Jun 27 03:56:59 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* io-gif-animation.c (gdk_pixbuf_gif_anim_frame_composite): Make
it compile with C89 compilers.
2003-06-23 Matthias Clasen <maclas@gmx.de>
* io-gif.c (gif_get_frame_info): Remove the pointless refusal to load images with dubious

View File

@ -439,11 +439,13 @@ gdk_pixbuf_gif_anim_frame_composite (GdkPixbufGifAnim *gif_anim,
f->need_recomposite = FALSE;
} else {
GdkPixbufFrame *prev_frame;
gint prev_clipped_width;
gint prev_clipped_height;
prev_frame = tmp->prev->data;
gint prev_clipped_width = MIN (gif_anim->width - prev_frame->x_offset, gdk_pixbuf_get_width (prev_frame->pixbuf));
gint prev_clipped_height = MIN (gif_anim->height - prev_frame->y_offset, gdk_pixbuf_get_height (prev_frame->pixbuf));
prev_clipped_width = MIN (gif_anim->width - prev_frame->x_offset, gdk_pixbuf_get_width (prev_frame->pixbuf));
prev_clipped_height = MIN (gif_anim->height - prev_frame->y_offset, gdk_pixbuf_get_height (prev_frame->pixbuf));
/* Init f->composited with what we should have after the previous
* frame

View File

@ -2368,7 +2368,12 @@ gtk_tree_view_column_cell_set_cell_data (GtkTreeViewColumn *tree_column,
list = info->attributes;
g_object_freeze_notify (cell);
g_object_set (cell, "is_expander", is_expander, "is_expanded", is_expanded, NULL);
if (info->cell->is_expander != is_expander)
g_object_set (cell, "is_expander", is_expander, NULL);
if (info->cell->is_expanded != is_expanded)
g_object_set (cell, "is_expanded", is_expanded, NULL);
while (list && list->next)
{