diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-10-03 09:29:43 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-10-03 09:29:43 +0800 |
commit | 1ad5f19df9e41efd06107dc04802c69eae7ca386 (patch) | |
tree | 2e60e134b991973235469814439bbb9676493d26 /shell/Evolution-StorageSetView.idl | |
parent | 11aa32cb036c01e993ff40b8799856a85256018f (diff) | |
download | gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.tar gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.tar.gz gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.tar.bz2 gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.tar.lz gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.tar.xz gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.tar.zst gsoc2013-evolution-1ad5f19df9e41efd06107dc04802c69eae7ca386.zip |
fix typo. (impl_StorageSetView_remove_listener): same.
2000-10-02 Chris Toshok <toshok@helixcode.com>
* evolution-storage-set-view.c (impl_StorageSetView_add_listener): fix typo.
(impl_StorageSetView_remove_listener): same.
(impl_StorageSetView__get_show_folders): implementation of getter for show_folders.
(impl_StorageSetView__set_show_folders): implementation of setter for show_folders.
(corba_class_init): install _set_show_folders and _get_show_folders.
* Evolution-StorageSetView.idl: add show_folders attribute to
StorageSetView.
* e-storage-set-view.h: add prototypes for
e_storage_set_view_{get,set}_show_folders.
* e-storage-set-view.c (insert_storages): split this code out from
e_storage_set_view_construct so we can call it when "show_folders"
has been changed.
(e_storage_set_view_construct): remove the code to insert
storages.
(e_storage_set_view_set_show_folders): new function. tears down
existing tree and node/path hashtable and calls insert_storages.
(e_storage_set_view_get_show_folders): new function, retrieves
current show_folders state.
svn path=/trunk/; revision=5684
Diffstat (limited to 'shell/Evolution-StorageSetView.idl')
-rw-r--r-- | shell/Evolution-StorageSetView.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/Evolution-StorageSetView.idl b/shell/Evolution-StorageSetView.idl index 0649b3b4a2..490da848e9 100644 --- a/shell/Evolution-StorageSetView.idl +++ b/shell/Evolution-StorageSetView.idl @@ -20,6 +20,8 @@ module Evolution { exception AlreadyListening {}; exception NotFound {}; + attribute boolean show_folders; + void add_listener (in StorageSetViewListener listener) raises (AlreadyListening); void remove_listener (in StorageSetViewListener listener) |