(set_selected_folders): Set the
customIconName part to the empty string. [#27616] Also, set_release on the sequence to TRUE. svn path=/trunk/; revision=17423
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2002-07-11 Ettore Perazzoli <ettore@ximian.com>
|
||||
|
||||
* e-summary-preferences.c (set_selected_folders): Set the
|
||||
customIconName part to the empty string. [#27616]
|
||||
Also, set_release on the sequence to TRUE.
|
||||
|
||||
2002-06-28 Dan Winship <danw@ximian.com>
|
||||
|
||||
* e-summary-mail.c (e_summary_mail_idle_get_info): Add this, to
|
||||
|
||||
@ -1325,21 +1325,25 @@ set_selected_folders (GNOME_Evolution_StorageSetView view)
|
||||
list->_maximum = count;
|
||||
list->_buffer = CORBA_sequence_GNOME_Evolution_Folder_allocbuf (count);
|
||||
|
||||
CORBA_sequence_set_release (list->_buffer, TRUE);
|
||||
|
||||
for (i = 0, l = global_preferences->display_folders; l; i++, l = l->next) {
|
||||
ESummaryPrefsFolder *folder = l->data;
|
||||
|
||||
/* Set duff values execpt for physicalUri & evolutionUri*/
|
||||
list->_buffer[i].type = CORBA_string_dup ("");
|
||||
list->_buffer[i].description = CORBA_string_dup ("");
|
||||
list->_buffer[i].displayName = CORBA_string_dup ("");
|
||||
if (strncmp (folder->evolution_uri, "evolution:", 10) == 0) {
|
||||
|
||||
if (strncmp (folder->evolution_uri, "evolution:", 10) == 0)
|
||||
list->_buffer[i].evolutionUri = CORBA_string_dup (folder->evolution_uri + 10);
|
||||
} else {
|
||||
else
|
||||
list->_buffer[i].evolutionUri = CORBA_string_dup (folder->evolution_uri);
|
||||
}
|
||||
|
||||
list->_buffer[i].physicalUri = CORBA_string_dup (folder->physical_uri);
|
||||
list->_buffer[i].unreadCount = 0;
|
||||
list->_buffer[i].canSyncOffline = TRUE;
|
||||
list->_buffer[i].sortingPriority = 0;
|
||||
list->_buffer[i].customIconName = CORBA_string_dup ("");
|
||||
}
|
||||
|
||||
CORBA_exception_init (&ev);
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
2002-07-11 Ettore Perazzoli <ettore@ximian.com>
|
||||
|
||||
* evolution-storage-set-view.c
|
||||
(impl_StorageSetView__set_checkedFolders): Remove extra braces.
|
||||
|
||||
2002-07-11 Ettore Perazzoli <ettore@ximian.com>
|
||||
|
||||
* e-shell-view.c (update_folder_title_bar): Ref the folder_icon
|
||||
|
||||
Reference in New Issue
Block a user