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
This commit is contained in:
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user