aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamon Chaplin <damon@helixcode.com>2000-06-16 15:33:13 +0800
committerDamon Chaplin <damon@src.gnome.org>2000-06-16 15:33:13 +0800
commite7adcbd3239a0f56eccb83c7c1b64793c39145ee (patch)
tree115abe99fc1f56decbba91912e749f3998c15436
parentef4fb079a43f916fb85c29467dc33da928e51692 (diff)
downloadgsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.tar
gsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.tar.gz
gsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.tar.bz2
gsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.tar.lz
gsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.tar.xz
gsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.tar.zst
gsoc2013-evolution-e7adcbd3239a0f56eccb83c7c1b64793c39145ee.zip
#ifdef'ed out references to functions which don't exist yet, so evolution
2000-06-16 Damon Chaplin <damon@helixcode.com> * gui/calendar-model.c (calendar_model_class_init): #ifdef'ed out references to functions which don't exist yet, so evolution still compiles. svn path=/trunk/; revision=3594
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/calendar-model.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index d90d27d693..cba3769e63 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,11 @@
2000-06-16 Damon Chaplin <damon@helixcode.com>
+ * gui/calendar-model.c (calendar_model_class_init): #ifdef'ed out
+ references to functions which don't exist yet, so evolution still
+ compiles.
+
+2000-06-16 Damon Chaplin <damon@helixcode.com>
+
* cal-util/test-recur.c: updated.
* cal-util/cal-recur.[hc]: mostly finished, though it depends on the
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c
index f91a5c11dd..af83145812 100644
--- a/calendar/gui/calendar-model.c
+++ b/calendar/gui/calendar-model.c
@@ -112,12 +112,14 @@ calendar_model_class_init (CalendarModelClass *class)
etm_class->column_count = calendar_model_column_count;
etm_class->row_count = calendar_model_row_count;
etm_class->value_at = calendar_model_value_at;
+#if 0
etm_class->set_value_at = calendar_model_set_value_at;
etm_class->is_cell_editable = calendar_model_is_cell_editable;
etm_class->duplicate_value = calendar_model_duplicate_value;
etm_class->free_value = calendar_model_free_value;
etm_class->initialize_value = calendar_model_initialize_value;
etm_class->value_is_empty = calendar_model_value_is_empty;
+#endif
}
/* Object initialization function for the calendar table model */