diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-config-default-folders.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index d570b7b0f4..8ccdddbaac 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2002-12-05 Chris Toshok <toshok@ximian.com> + + * e-shell-config-default-folders.c: use "contacts", + "contacts/ldap" as the accepted contacts types, so it'll allow + both normal and ldap contact folders. + 2002-12-04 Ettore Perazzoli <ettore@ximian.com> * e-component-registry.c (component_free): Only invoke diff --git a/shell/e-shell-config-default-folders.c b/shell/e-shell-config-default-folders.c index 1966df05a9..9ee4cd7be8 100644 --- a/shell/e-shell-config-default-folders.c +++ b/shell/e-shell-config-default-folders.c @@ -122,7 +122,7 @@ config_control_destroy_notify (void *data, } static const char *mail_types[] = { "mail", NULL }; -static const char *contacts_types[] = { "contacts", "ldap-contacts", NULL }; +static const char *contacts_types[] = { "contacts", "contacts/ldap", NULL }; static const char *calendar_types[] = { "calendar", NULL }; static const char *tasks_types[] = { "tasks", NULL }; |