diff options
author | Jain Vivek <jvivek@src.gnome.org> | 2004-12-13 11:58:16 +0800 |
---|---|---|
committer | Jain Vivek <jvivek@src.gnome.org> | 2004-12-13 11:58:16 +0800 |
commit | 102f8ffa61a356bfe57669f7540d836d29758cec (patch) | |
tree | 7cc5dfbbe685191a74724d8de1801219e5a77b36 /calendar | |
parent | 531170207903c208b13369328ed61433a45c5ba7 (diff) | |
download | gsoc2013-evolution-102f8ffa61a356bfe57669f7540d836d29758cec.tar.gz gsoc2013-evolution-102f8ffa61a356bfe57669f7540d836d29758cec.tar.zst gsoc2013-evolution-102f8ffa61a356bfe57669f7540d836d29758cec.zip |
+2004-12-10 Vivek Jain <jvivek@novell.com>
* gui/dialogs/calendar-setup.c : Changed the window title based upon
the source.
svn path=/trunk/; revision=28112
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/calendar-setup.c | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 21d9dd3104..c4eceb36d7 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2004-12-13 Vivek Jain <jvivek@novell.com> + + * gui/dialogs/calendar-setup.c : Changed the window title based upon + the source. + 2003-12-09 Rodrigo Moya <rodrigo@novell.com> * gui/e-calendar-view.c (on_unrecur_appointment): keep a local copy diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c index f848504981..3ae732cab3 100644 --- a/calendar/gui/dialogs/calendar-setup.c +++ b/calendar/gui/dialogs/calendar-setup.c @@ -371,7 +371,6 @@ calendar_setup_edit_calendar (struct _GtkWindow *parent, ESource *source, ESourc } else { GConfClient *gconf; GSList *l; - sdialog->source = e_source_new ("", ""); gconf = gconf_client_get_default (); sdialog->source_list = e_source_list_new_for_gconf (gconf, "/apps/evolution/calendar/sources"); @@ -397,8 +396,11 @@ calendar_setup_edit_calendar (struct _GtkWindow *parent, ESource *source, ESourc target = e_cal_config_target_new_source (ec, sdialog->source); e_config_set_target ((EConfig *) ec, (EConfigTarget *) target); - sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("Calendar Properties")); - + if (source) + sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("Calendar Properties")); + else + sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("New Calendar")); + /* forces initial validation */ if (!sdialog->original_source) e_config_target_changed ((EConfig *)ec, E_CONFIG_TARGET_CHANGED_STATE); |