diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-26 05:20:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-26 05:20:47 +0800 |
commit | 918e4a2d3a71f458e6dad275d0e046cbe90a67d6 (patch) | |
tree | a24cc503a06945e6f96258f11cd5a17744f00a5e /calendar/gui/dialogs/select-source-dialog.c | |
parent | ebb89b17ef6820efce8134cd0dacf9ea03f1b6f5 (diff) | |
download | gsoc2013-evolution-918e4a2d3a71f458e6dad275d0e046cbe90a67d6.tar.gz gsoc2013-evolution-918e4a2d3a71f458e6dad275d0e046cbe90a67d6.tar.zst gsoc2013-evolution-918e4a2d3a71f458e6dad275d0e046cbe90a67d6.zip |
Use gtk_window_set_icon_list() here instead of gtk_window_set_icon().
2004-05-25 Jeffrey Stedfast <fejj@novell.com>
* gui/dialogs/url-editor-dialog.c (init_widgets): Use
gtk_window_set_icon_list() here instead of gtk_window_set_icon().
* gui/dialogs/select-source-dialog.c (select_source_dialog): Use
gtk_window_set_icon_list() here instead of gtk_window_set_icon().
* gui/dialogs/calendar-setup.c (source_to_dialog): Huh?? Why are
integer colours in an array of char*? Fixed to be an array of
guint32.
* gui/dialogs/changed-comp.c (changed_component_dialog): Use
gtk_window_set_icon_list() here instead of gtk_window_set_icon().
* gui/dialogs/calendar-setup.c (calendar_setup_new_calendar):
Don't bother calling tk_window_set_icon() if we are gonna call
gtk_window_set_icon_list a few lines later.
(calendar_setup_edit_calendar): Same.
instead.
(calendar_setup_new_task_list): Same.
(calendar_setup_edit_task_list): Same.
* gui/dialogs/alarm-options.c (alarm_options_dialog_run): Use
gtk_window_set_icon_list() instead of gtk_window_set_icon() so gtk
can do the Right Thing (tm).
svn path=/trunk/; revision=26086
Diffstat (limited to 'calendar/gui/dialogs/select-source-dialog.c')
-rw-r--r-- | calendar/gui/dialogs/select-source-dialog.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/select-source-dialog.c b/calendar/gui/dialogs/select-source-dialog.c index 5687b4565d..0b8f93e7e4 100644 --- a/calendar/gui/dialogs/select-source-dialog.c +++ b/calendar/gui/dialogs/select-source-dialog.c @@ -55,6 +55,7 @@ select_source_dialog (GtkWindow *parent, ECalSourceType obj_type) const char *gconf_key; char *label_text; GConfClient *conf_client; + GList *icon_list = NULL; if (obj_type == E_CAL_SOURCE_TYPE_EVENT) gconf_key = "/apps/evolution/calendar/sources"; @@ -125,10 +126,16 @@ select_source_dialog (GtkWindow *parent, ECalSourceType obj_type) gtk_label_set_mnemonic_widget (GTK_LABEL (label), source_selector); if (obj_type == E_CAL_SOURCE_TYPE_EVENT) - gtk_window_set_icon (GTK_WINDOW (dialog), e_icon_factory_get_icon("stock_calendar", 32)); + icon_list = e_icon_factory_get_icon_list ("stock_calendar"); else if (obj_type == E_CAL_SOURCE_TYPE_TODO) - gtk_window_set_icon (GTK_WINDOW (dialog), e_icon_factory_get_icon("stock_todo", 32)); - + icon_list = e_icon_factory_get_icon_list ("stock_todo"); + + if (icon_list) { + gtk_window_set_icon_list (GTK_WINDOW (dialog), icon_list); + g_list_foreach (icon_list, (GFunc) g_object_unref, NULL); + g_list_free (icon_list); + } + if (gtk_dialog_run (GTK_DIALOG (dialog)) != GTK_RESPONSE_OK) { if (selected_source) g_object_unref (selected_source); |