diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-30 22:48:07 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:08:33 +0800 |
commit | 1d57572affb122f532b0668613e3cfd9dbab5416 (patch) | |
tree | 68626f62cb67685588f3e8486149aa1f939e7160 | |
parent | f0f74c407bab7aac50cdf9e4a29259e8f0610284 (diff) | |
download | gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.tar gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.tar.gz gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.tar.bz2 gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.tar.lz gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.tar.xz gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.tar.zst gsoc2013-evolution-1d57572affb122f532b0668613e3cfd9dbab5416.zip |
Autocompletion in contact list editor didn't work
due to forgotten call to load books to ENameSelector
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index 41c9f27ae9..e1106a2fee 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -1592,6 +1592,8 @@ contact_list_editor_init (EContactListEditor *editor) gtk_widget_show_all (WIDGET (DIALOG)); setup_custom_widgets (editor); + + e_name_selector_load_books (priv->name_selector); } /***************************** Public Interface ******************************/ |