aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-view-factory.c
diff options
context:
space:
mode:
authorRadek Doulik <rodo@ximian.com>2004-07-13 19:07:19 +0800
committerRadek Doulik <rodo@src.gnome.org>2004-07-13 19:07:19 +0800
commite5d4f6b7d22530f4642aa98c55029398ee943b5d (patch)
tree12a0463bd5dfed339e8cde26117bf830243ea478 /calendar/gui/calendar-view-factory.c
parent201b027d54d5738ddb43cb65fbf639e968a99350 (diff)
downloadgsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.tar
gsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.tar.gz
gsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.tar.bz2
gsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.tar.lz
gsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.tar.xz
gsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.tar.zst
gsoc2013-evolution-e5d4f6b7d22530f4642aa98c55029398ee943b5d.zip
as below
2004-07-08 Radek Doulik <rodo@ximian.com> * gui/e-cal-model.c (e_cal_model_date_value_to_string): as below * gui/e-cal-model-calendar.c (ecmc_value_to_string): as below * gui/e-cal-model.c (ecm_value_to_string): as below * gui/e-cal-model-tasks.c (ecmt_value_to_string): dup the string value, it's free-ed later. instead of returning NULL return g_strdup ("") as gal does Fixes #56271 svn path=/trunk/; revision=26634
Diffstat (limited to 'calendar/gui/calendar-view-factory.c')
-rw-r--r--calendar/gui/calendar-view-factory.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/calendar-view-factory.c b/calendar/gui/calendar-view-factory.c
index f8d2d92ce3..4c3f83572d 100644
--- a/calendar/gui/calendar-view-factory.c
+++ b/calendar/gui/calendar-view-factory.c
@@ -173,6 +173,8 @@ calendar_view_factory_new_view (GalViewFactory *factory, const char *name)
priv = cal_view_factory->priv;
cal_view = calendar_view_new (priv->view_type, name);
+ gal_view_set_built_in (GAL_VIEW (cal_view), TRUE);
+
return GAL_VIEW (cal_view);
}