diff options
author | Larry Ewing <lewing@src.gnome.org> | 2004-06-12 02:06:25 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2004-06-12 02:06:25 +0800 |
commit | a5cbaf1e09a00025cca1168fd0bc1a73a3a0ecaf (patch) | |
tree | 7f089b64bb84e347cd23203a24bc618a095dcc80 /widgets | |
parent | ef03909b1598cf22e9b36f431339cbe07f8e1bc6 (diff) | |
download | gsoc2013-evolution-a5cbaf1e09a00025cca1168fd0bc1a73a3a0ecaf.tar.gz gsoc2013-evolution-a5cbaf1e09a00025cca1168fd0bc1a73a3a0ecaf.tar.zst gsoc2013-evolution-a5cbaf1e09a00025cca1168fd0bc1a73a3a0ecaf.zip |
(pixbuf_cell_data_func): actually initialize the pixbuf (bad larry).
svn path=/trunk/; revision=26314
Diffstat (limited to 'widgets')
-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); |