aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-06 13:29:34 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-06 13:29:34 +0800
commita6ad5ed3aa6348ae70ef21be37adb9f6df02e392 (patch)
treefbf6b23dfc04c1a1aba261becb814f6b43076ba2 /calendar
parent94a8222e180c526cadf6df4f5cf3c040904e6083 (diff)
downloadgsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar
gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar.gz
gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar.bz2
gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar.lz
gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar.xz
gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar.zst
gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.zip
gui/e-cal-config.c (ecph_class_init) Remove stray leftover debugging
2005-12-06 Tor Lillqvist <tml@novell.com> * gui/e-cal-config.c (ecph_class_init) * gui/memos-component.c (memos_component_init): Remove stray leftover debugging output. * gui/memos-component.c (ensure_sources): Use g_filename_to_uri() instead of just prefixing "file://". svn path=/trunk/; revision=30725
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/gui/e-cal-config.c1
-rw-r--r--calendar/gui/memos-component.c4
3 files changed, 10 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e30cd9f62c..9aba117ee8 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,12 @@
+2005-12-06 Tor Lillqvist <tml@novell.com>
+
+ * gui/e-cal-config.c (ecph_class_init)
+ * gui/memos-component.c (memos_component_init): Remove stray
+ leftover debugging output.
+
+ * gui/memos-component.c (ensure_sources): Use g_filename_to_uri()
+ instead of just prefixing "file://".
+
2005-11-29 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #322616
diff --git a/calendar/gui/e-cal-config.c b/calendar/gui/e-cal-config.c
index 81e818c806..b243afc844 100644
--- a/calendar/gui/e-cal-config.c
+++ b/calendar/gui/e-cal-config.c
@@ -160,7 +160,6 @@ ecph_class_init (EPluginHookClass *klass)
klass->id = "org.gnome.evolution.calendar.config:1.0";
for (i = 0; ecph_targets[i].type; i++) {
- g_print ("adding hook target '%s'\n", ecph_targets[i].type);
e_config_hook_class_add_target_map ((EConfigHookClass *)klass, &ecph_targets[i]);
}
diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c
index ab9719f426..44e4747d09 100644
--- a/calendar/gui/memos-component.c
+++ b/calendar/gui/memos-component.c
@@ -143,7 +143,7 @@ ensure_sources (MemosComponent *component)
"memos", "local",
NULL);
- base_uri_proto = g_strconcat ("file://", base_uri, NULL);
+ base_uri_proto = g_filename_to_uri (base_uri, NULL, NULL);
groups = e_source_list_peek_groups (source_list);
if (groups) {
@@ -1277,8 +1277,6 @@ memos_component_init (MemosComponent *component, MemosComponentClass *klass)
priv = g_new0 (MemosComponentPrivate, 1);
- printf("priv (MemosComponentnPrivate) == %p\n", priv);
-
priv->base_directory = g_build_filename (g_get_home_dir (), ".evolution", NULL);
priv->config_directory = g_build_filename (g_get_home_dir (),
".evolution", "memos", "config",