diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index c6e6d21e7a..5ef6be4969 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2004-12-13 Vivek Jain <jvivek@novell.com> + + * gui/component/addressbook-config.c (addressbook_config_edit_source): set the + window title based upon the source + 2004-12-08 Hans Petter Jansson <hpj@novell.com> * gui/component/addressbook-migrate.c diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 54fe37d314..8c7fe03968 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -1067,7 +1067,11 @@ addressbook_config_edit_source (GtkWidget *parent, ESource *source) target = eab_config_target_new_source(ec, sdialog->source); e_config_set_target((EConfig *)ec, (EConfigTarget *)target); - sdialog->window = e_config_create_window((EConfig *)ec, NULL, _("Address Book Properties")); + if(source) + sdialog->window = e_config_create_window((EConfig *)ec, NULL, _("Address Book Properties")); + else + sdialog->window = e_config_create_window((EConfig *)ec, NULL, _("New Address Book")); + /* forces initial validation */ if (!sdialog->original_source) |