diff options
-rw-r--r-- | widgets/ChangeLog | 1 | ||||
-rw-r--r-- | widgets/misc/e-source-selector.c | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog index 4c8f7bd31f..92a3ed6d2d 100644 --- a/widgets/ChangeLog +++ b/widgets/ChangeLog @@ -4,6 +4,7 @@ block instead of setting the foreground to indicate the source color. (pixbuf_cell_data_func): actually initialize the pixbuf (bad larry). + (pixbuf_cell_data_func): clean up warnings. (double bad larry). 2004-05-20 Rodney Dawes <dobey@ximian.com> diff --git a/widgets/misc/e-source-selector.c b/widgets/misc/e-source-selector.c index fd1cd82c6d..7891a53281 100644 --- a/widgets/misc/e-source-selector.c +++ b/widgets/misc/e-source-selector.c @@ -376,8 +376,6 @@ text_cell_data_func (GtkTreeViewColumn *column, NULL); } else { ESource *source; - guint32 color; - gboolean has_color; g_assert (E_IS_SOURCE (data)); source = E_SOURCE (data); @@ -410,8 +408,7 @@ pixbuf_cell_data_func (GtkTreeViewColumn *column, } else { ESource *source; guint32 color; - gboolean has_color; - GdkPixbuf *pixbuf = NULL; + GdkPixbuf *pixbuf; g_assert (E_IS_SOURCE (data)); source = E_SOURCE (data); |