Fix icon theme combo box

2007-05-07  Thomas Wood  <thos@gnome.org>

	* appearance-style.c: (prepare_combo): Fix icon theme combo box

svn path=/trunk/; revision=7572
This commit is contained in:
Thomas Wood 2007-05-07 22:18:48 +00:00 committed by Thomas Wood
parent 679410b323
commit 21b005ca5f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-05-07 Thomas Wood <thos@gnome.org>
* appearance-style.c: (prepare_combo): Fix icon theme combo box
2007-05-07 Thomas Wood <thos@gnome.org>
* appearance-style.c: (prepare_combo): Use GConfPropertyEditor for theme

View file

@ -112,6 +112,7 @@ prepare_combo (AppearanceData *data, GtkWidget *combo, enum ThemeType type)
case ICON_THEMES:
list = gnome_theme_icon_info_find_all ();
break;
case CURSOR_THEMES:
list = NULL; /* don't know what to do yet */
@ -125,7 +126,7 @@ prepare_combo (AppearanceData *data, GtkWidget *combo, enum ThemeType type)
for (l = list; l; l = g_list_next (l))
{
gchar *name;
gchar *name = NULL;
GtkTreeIter i;
if (type < ICON_THEMES)