aboutsummaryrefslogtreecommitdiffstats
path: root/shell/ChangeLog
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-03-15 03:58:36 +0800
committerDan Winship <danw@src.gnome.org>2003-03-15 03:58:36 +0800
commit35ff6769cb500b826678ae64504befc1c9c4757e (patch)
tree8728b8b6a4092dede79f5591668867726af23ff6 /shell/ChangeLog
parent238c20117fc8d3fdddb270e3ef197593e45e1a85 (diff)
downloadgsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.tar
gsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.tar.gz
gsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.tar.bz2
gsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.tar.lz
gsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.tar.xz
gsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.tar.zst
gsoc2013-evolution-35ff6769cb500b826678ae64504befc1c9c4757e.zip
Add (e_storage_declare_has_subfolders): Rename from
* e-storage.c (e_storage_get_has_subfolders): Add (e_storage_declare_has_subfolders): Rename from e_storage_has_subfolders to make it clearer that this is a setter, not a getter. (Can't call it e_storage_set_has_subfolders because that sounds like it belongs in e-storage-set.) * e-corba-storage.c (impl_StorageListener_notifyHasSubfolders): update for e_storage_declare_has_subfolders name change (get_folder): Override the default EStorage implementation: if asked for a folder under a not-yet-expanded folder, attempt to force the parent(s) to expand so that the child is available. Fixes part of #30415 svn path=/trunk/; revision=20302
Diffstat (limited to 'shell/ChangeLog')
-rw-r--r--shell/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 7994f32b12..aa83239acb 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,20 @@
2003-03-14 Dan Winship <danw@ximian.com>
+ * e-storage.c (e_storage_get_has_subfolders): Add
+ (e_storage_declare_has_subfolders): Rename from
+ e_storage_has_subfolders to make it clearer that this is a setter,
+ not a getter. (Can't call it e_storage_set_has_subfolders because
+ that sounds like it belongs in e-storage-set.)
+
+ * e-corba-storage.c (impl_StorageListener_notifyHasSubfolders):
+ update for e_storage_declare_has_subfolders name change
+ (get_folder): Override the default EStorage implementation: if
+ asked for a folder under a not-yet-expanded folder, attempt to
+ force the parent(s) to expand so that the child is available.
+ Fixes part of #30415
+
+2003-03-14 Dan Winship <danw@ximian.com>
+
* Evolution-Storage.idl (asyncOpenFolder): add a Bonobo::Listener
to this like the other async interfaces, rather than having a
hacky way to signal failure.