Enable autocompletion on personal addressbook when creating it (Mandriva
* gui/component/addressbook-component.c: (ensure_sources):
* gui/component/addressbook-migrate.c: (create_groups):
Enable autocompletion on personal addressbook when creating it
(Mandriva bug #16427).
svn path=/trunk/; revision=29674
This commit is contained in:
@ -1,3 +1,10 @@
|
||||
2005-07-07 Frederic Crozat <fcrozat@mandriva.com>
|
||||
|
||||
* gui/component/addressbook-component.c: (ensure_sources):
|
||||
* gui/component/addressbook-migrate.c: (create_groups):
|
||||
Enable autocompletion on personal addressbook when creating it
|
||||
(Mandriva bug #16427).
|
||||
|
||||
2005-07-06 Vivek Jain <jvivek@novell.com>
|
||||
|
||||
* gui/component/addressbook-view.c: (popup_event_callback)
|
||||
|
||||
@ -141,6 +141,8 @@ ensure_sources (AddressbookComponent *component)
|
||||
ESource *source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI);
|
||||
e_source_group_add_source (on_this_computer, source, -1);
|
||||
|
||||
e_source_set_property (source, "completion", "true");
|
||||
|
||||
personal_source = source;
|
||||
}
|
||||
|
||||
|
||||
@ -509,6 +509,8 @@ create_groups (MigrationContext *context,
|
||||
ESource *source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI);
|
||||
e_source_group_add_source (*on_this_computer, source, -1);
|
||||
|
||||
e_source_set_property (source, "completion", "true");
|
||||
|
||||
*personal_source = source;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user