aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-storage.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-11-02 11:46:15 +0800
committerDan Winship <danw@src.gnome.org>2000-11-02 11:46:15 +0800
commitf99dfd474c829a059da873f9b08acfdfd0f4c2d2 (patch)
treeec137cb1bc26a6c81d98835a2c0fdba1fb37c6fd /shell/evolution-storage.c
parent6db2305b3345ebb436c81bda685ccf1cb8bcbfa7 (diff)
downloadgsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.tar
gsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.tar.gz
gsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.tar.bz2
gsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.tar.lz
gsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.tar.xz
gsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.tar.zst
gsoc2013-evolution-f99dfd474c829a059da873f9b08acfdfd0f4c2d2.zip
Make this take "highlighted" as well.
* evolution-storage.c (evolution_storage_new_folder): Make this take "highlighted" as well. * e-local-storage.c (new_folder): * e-corba-storage.c (impl_StorageListener_new_folder): set highlighted on the new folder. * e-storage-set-view.c (updated_folder_cb): Remove an unused variable. svn path=/trunk/; revision=6338
Diffstat (limited to 'shell/evolution-storage.c')
-rw-r--r--shell/evolution-storage.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c
index d1a1285297..1ca69da867 100644
--- a/shell/evolution-storage.c
+++ b/shell/evolution-storage.c
@@ -483,7 +483,8 @@ evolution_storage_new_folder (EvolutionStorage *evolution_storage,
const char *display_name,
const char *type,
const char *physical_uri,
- const char *description)
+ const char *description,
+ gboolean highlighted)
{
EvolutionStorageResult result;
EvolutionStoragePrivate *priv;
@@ -512,6 +513,7 @@ evolution_storage_new_folder (EvolutionStorage *evolution_storage,
corba_folder->description = CORBA_string_dup (description);
corba_folder->type = CORBA_string_dup (type);
corba_folder->physical_uri = CORBA_string_dup (physical_uri);
+ corba_folder->highlighted = highlighted;
result = EVOLUTION_STORAGE_OK;