diff options
-rw-r--r-- | widgets/ChangeLog | 1 | ||||
-rw-r--r-- | widgets/misc/e-source-selector.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog index 47f811c116..4c8f7bd31f 100644 --- a/widgets/ChangeLog +++ b/widgets/ChangeLog @@ -3,6 +3,7 @@ * misc/e-source-selector.c: make the source selector use a colock block instead of setting the foreground to indicate the source color. + (pixbuf_cell_data_func): actually initialize the pixbuf (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 8983af5585..fd1cd82c6d 100644 --- a/widgets/misc/e-source-selector.c +++ b/widgets/misc/e-source-selector.c @@ -411,7 +411,7 @@ pixbuf_cell_data_func (GtkTreeViewColumn *column, ESource *source; guint32 color; gboolean has_color; - GdkPixbuf *pixbuf; + GdkPixbuf *pixbuf = NULL; g_assert (E_IS_SOURCE (data)); source = E_SOURCE (data); |