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/memos-component.c | |
parent | 94a8222e180c526cadf6df4f5cf3c040904e6083 (diff) | |
download | gsoc2013-evolution-a6ad5ed3aa6348ae70ef21be37adb9f6df02e392.tar.gz 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/memos-component.c')
-rw-r--r-- | calendar/gui/memos-component.c | 4 |
1 files changed, 1 insertions, 3 deletions
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", |