aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/Makefile.am2
-rw-r--r--e-util/e-config-listener.c2
3 files changed, 8 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 3c042689d3..e0c1bec6b4 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-24 Rodrigo Moya <rodrigo@ximian.com>
+
+ * e-config-listener.c (add_key): just preload one level of GConf keys,
+ since preloading all makes the calendar startup slow.
+
2003-07-23 Dan Winship <danw@ximian.com>
* Makefile.am: Use EVO_MARSHAL_RULE
diff --git a/e-util/Makefile.am b/e-util/Makefile.am
index 37da4375f1..1d09e140bb 100644
--- a/e-util/Makefile.am
+++ b/e-util/Makefile.am
@@ -84,6 +84,8 @@ libeutil_la_SOURCES = \
e-url.c \
e-util-marshal.c \
e-xml-hash-utils.c \
+ eggtrayicon.c \
+ eggtrayicon.h \
md5-utils.c
MARSHAL_GENERATED = e-util-marshal.c e-util-marshal.h
diff --git a/e-util/e-config-listener.c b/e-util/e-config-listener.c
index dc90e3bedd..ecc1b45fce 100644
--- a/e-util/e-config-listener.c
+++ b/e-util/e-config-listener.c
@@ -231,7 +231,7 @@ add_key (EConfigListener *cl, const char *key, GConfValueType type,
kd->used_default = used_default;
/* add the listener for changes */
- gconf_client_add_dir (cl->priv->db, key, GCONF_CLIENT_PRELOAD_RECURSIVE, NULL);
+ gconf_client_add_dir (cl->priv->db, key, GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
kd->lid = gconf_client_notify_add (cl->priv->db, key,
(GConfClientNotifyFunc) property_change_cb,
kd, NULL, NULL);