diff options
author | JP Rosevear <jpr@novell.com> | 2004-09-22 00:02:42 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-09-22 00:02:42 +0800 |
commit | 99efa7fcca687a4b7a9df7897c6c7e2cc1853b6a (patch) | |
tree | 658a97d9846f77f0d01cdc93f77c4e7c810d5a48 /calendar/gui/e-cal-model-calendar.c | |
parent | fc2522291ac105d23f6cc165ae0995c84c82cba5 (diff) | |
download | gsoc2013-evolution-99efa7fcca687a4b7a9df7897c6c7e2cc1853b6a.tar.gz gsoc2013-evolution-99efa7fcca687a4b7a9df7897c6c7e2cc1853b6a.tar.zst gsoc2013-evolution-99efa7fcca687a4b7a9df7897c6c7e2cc1853b6a.zip |
Fixes #59194
2004-09-21 JP Rosevear <jpr@novell.com>
Fixes #59194
* gui/e-cal-model-calendar.c (get_location): return "" instead of
NULL
svn path=/trunk/; revision=27317
Diffstat (limited to 'calendar/gui/e-cal-model-calendar.c')
-rw-r--r-- | calendar/gui/e-cal-model-calendar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-model-calendar.c b/calendar/gui/e-cal-model-calendar.c index 4754927bbd..479f51fbd6 100644 --- a/calendar/gui/e-cal-model-calendar.c +++ b/calendar/gui/e-cal-model-calendar.c @@ -157,7 +157,7 @@ get_location (ECalModelComponent *comp_data) if (prop) return (void *) icalproperty_get_location (prop); - return NULL; + return ""; } static void * |