diff options
author | Tor Lillqvist <tml@novell.com> | 2005-12-06 13:29:34 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-12-06 13:29:34 +0800 |
commit | a6ad5ed3aa6348ae70ef21be37adb9f6df02e392 (patch) | |
tree | fbf6b23dfc04c1a1aba261becb814f6b43076ba2 /calendar/gui | |
parent | 94a8222e180c526cadf6df4f5cf3c040904e6083 (diff) | |
download | gsoc2013-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/gui')
-rw-r--r-- | calendar/gui/e-cal-config.c | 1 | ||||
-rw-r--r-- | calendar/gui/memos-component.c | 4 |
2 files changed, 1 insertions, 4 deletions
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", |