diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-23 22:39:10 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-23 22:39:10 +0800 |
commit | 775fecfd93f0df135771692526f1af3ac864819d (patch) | |
tree | e2764e831735a5baca9c9b702cd4f29471287a17 | |
parent | 1c9bb59ff2669b5778dfe551288b5f5af0676318 (diff) | |
download | gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.tar gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.tar.gz gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.tar.bz2 gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.tar.lz gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.tar.xz gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.tar.zst gsoc2013-empathy-775fecfd93f0df135771692526f1af3ac864819d.zip |
contact-selector: EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS contains a pixbuf now
-rw-r--r-- | libempathy-gtk/empathy-contact-selector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-selector.c b/libempathy-gtk/empathy-contact-selector.c index 027ca41c2..c70d2575a 100644 --- a/libempathy-gtk/empathy-contact-selector.c +++ b/libempathy-gtk/empathy-contact-selector.c @@ -232,7 +232,7 @@ contact_selector_constructor (GType type, renderer = gtk_cell_renderer_pixbuf_new (); gtk_cell_layout_pack_start (cell_layout, renderer, FALSE); gtk_cell_layout_set_attributes (cell_layout, renderer, - "icon-name", EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, NULL); + "pixbuf", EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, NULL); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (cell_layout, renderer, TRUE); |