look at the correct icon theme after screen changes and update also combo

2006-02-28  Luca Cavalli  <loopback@slackit.org>

	* gnome-da-capplet.c: (refresh_combo_box_icons),
	(theme_changed_cb), (screen_changed_cb), (fill_combo_box),
	(show_dialog):
	* gnome-da-capplet.h:
	* gnome-da-item.c: (gnome_da_web_item_free),
	(gnome_da_mail_item_free), (gnome_da_term_item_free):
	* gnome-da-item.h: look at the correct icon theme after screen changes
	and update also combo boxes icons when icon theme changes. Closes
	bug #330154.
This commit is contained in:
Luca Cavalli 2006-02-28 21:02:55 +00:00 committed by Luca Cavalli
parent 4bfaca31bd
commit 68e2fda416
5 changed files with 94 additions and 24 deletions

View file

@ -60,6 +60,7 @@ gnome_da_web_item_free (GnomeDAWebItem *item)
g_free (item->generic.executable);
g_free (item->generic.command);
g_free (item->generic.icon_name);
g_free (item->generic.icon_path);
g_free (item->tab_command);
g_free (item->win_command);
@ -76,6 +77,7 @@ gnome_da_mail_item_free (GnomeDAMailItem *item)
g_free (item->generic.executable);
g_free (item->generic.command);
g_free (item->generic.icon_name);
g_free (item->generic.icon_path);
g_free (item);
}
@ -89,6 +91,7 @@ gnome_da_term_item_free (GnomeDATermItem *item)
g_free (item->generic.executable);
g_free (item->generic.command);
g_free (item->generic.icon_name);
g_free (item->generic.icon_path);
g_free (item->exec_flag);