aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-cal-model.h
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-10-27 21:11:52 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-10-27 21:11:52 +0800
commit81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c (patch)
tree4562534a977e588ef5e499924fb7e92ca84834ef /calendar/gui/e-cal-model.h
parentd14abf0434d773d6aecb63a54b79af4ea468c8d3 (diff)
downloadgsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.tar
gsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.tar.gz
gsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.tar.bz2
gsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.tar.lz
gsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.tar.xz
gsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.tar.zst
gsoc2013-evolution-81a6d7f5fe9db8975d67e3fe6dae440ecd8f948c.zip
changed fill_component_from_model virtual method to get an ETableModel,
2003-10-27 Rodrigo Moya <rodrigo@ximian.com> * gui/e-cal-model.h: changed fill_component_from_model virtual method to get an ETableModel, not an ECalModel. * gui/e-cal-model.c (ecm_append_row): the source model sent from ETable is an ETableModel, not an ECalModel. * gui/e-cal-model-calendar.c (ecmc_fill_component_from_model): get an ETableModel for the 'source_model' argument. * gui/e-cal-model-tasks.c (ecmt_fill_component_from_model): ditto. svn path=/trunk/; revision=23082
Diffstat (limited to 'calendar/gui/e-cal-model.h')
-rw-r--r--calendar/gui/e-cal-model.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-model.h b/calendar/gui/e-cal-model.h
index 9c673ca439..6a94414676 100644
--- a/calendar/gui/e-cal-model.h
+++ b/calendar/gui/e-cal-model.h
@@ -74,7 +74,7 @@ typedef struct {
/* virtual methods */
const gchar * (* get_color_for_component) (ECalModel *model, ECalModelComponent *comp_data);
void (* fill_component_from_model) (ECalModel *model, ECalModelComponent *comp_data,
- ECalModel *source_model, gint row);
+ ETableModel *source_model, gint row);
} ECalModelClass;
GType e_cal_model_get_type (void);