diff -r 98bb9921edfa -r ad91ce0effe2 console/libgnt/gntcombobox.c --- a/console/libgnt/gntcombobox.c Tue Jul 18 07:18:05 2006 +0000 +++ b/console/libgnt/gntcombobox.c Wed Jul 19 07:12:59 2006 +0000 @@ -235,7 +235,8 @@ void gnt_combo_box_add_data(GntComboBox *box, gpointer key, const char *text) { - gnt_tree_add_row_after(GNT_TREE(box->dropdown), key, text, NULL, NULL); + gnt_tree_add_row_after(GNT_TREE(box->dropdown), key, + gnt_tree_create_row(GNT_TREE(box->dropdown), text), NULL, NULL); if (box->selected == NULL) set_selection(box, key); }