diff options
author | Dan Winship <danw@src.gnome.org> | 2000-11-02 11:47:01 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-11-02 11:47:01 +0800 |
commit | 5019775390678fb220dff8d29aabfb84d61a1100 (patch) | |
tree | 20fd473c5565cbe1bed0d8ae63fd494240b62e18 | |
parent | f99dfd474c829a059da873f9b08acfdfd0f4c2d2 (diff) | |
download | gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.tar gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.tar.gz gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.tar.bz2 gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.tar.lz gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.tar.xz gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.tar.zst gsoc2013-evolution-5019775390678fb220dff8d29aabfb84d61a1100.zip |
Add "highlighted" flag to evolution_storage_new_folder
* gui/component/e-ldap-storage.c (load_ldap_data):
(e_ldap_storage_add_server): Add "highlighted" flag to
evolution_storage_new_folder
svn path=/trunk/; revision=6339
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/e-ldap-storage.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index c091dee850..9e3a90330b 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2000-11-01 Dan Winship <danw@helixcode.com> + + * gui/component/e-ldap-storage.c (load_ldap_data): + (e_ldap_storage_add_server): Add "highlighted" flag to + evolution_storage_new_folder + 2000-10-31 JP Rosevear <jpr@helixcode.com> * conduit/address-conduit.c (cursor_cb): Let the warning make sense diff --git a/addressbook/gui/component/e-ldap-storage.c b/addressbook/gui/component/e-ldap-storage.c index 11861b0ac2..518de69e0d 100644 --- a/addressbook/gui/component/e-ldap-storage.c +++ b/addressbook/gui/component/e-ldap-storage.c @@ -187,7 +187,8 @@ load_ldap_data (EvolutionStorage *storage, path = g_strdup_printf ("/%s", server->name); evolution_storage_new_folder (storage, path, server->name, - "contacts", server->uri, server->description); + "contacts", server->uri, + server->description, FALSE); g_hash_table_insert (servers, server->name, server); @@ -278,7 +279,8 @@ e_ldap_storage_add_server (ELDAPServer *server) /* and then to the ui */ path = g_strdup_printf ("/%s", server->name); - evolution_storage_new_folder (storage, path, server->name, "contacts", server->uri, server->description); + evolution_storage_new_folder (storage, path, server->name, "contacts", + server->uri, server->description, FALSE); g_free (path); |