aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-calendar-table.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-08 07:51:03 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-08 07:51:03 +0800
commit2caa218421d9488a472462de1af3502106037fcd (patch)
tree8c615d9ca6771af1c691f0953d349cf5cbb625d2 /calendar/gui/e-calendar-table.c
parent27f63291c228098721871b4b9bc26e311779fd7f (diff)
downloadgsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.tar
gsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.tar.gz
gsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.tar.bz2
gsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.tar.lz
gsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.tar.xz
gsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.tar.zst
gsoc2013-evolution-2caa218421d9488a472462de1af3502106037fcd.zip
Got rid of code referencing the ETableScrolled proxy functions.
2000-12-07 Christopher James Lahey <clahey@helixcode.com> * gui/e-calendar-table.c: Got rid of code referencing the ETableScrolled proxy functions. svn path=/trunk/; revision=6855
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r--calendar/gui/e-calendar-table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index 850315577a..080443e383 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -466,7 +466,7 @@ e_calendar_table_load_state (ECalendarTable *cal_table,
if (stat (filename, &st) == 0 && st.st_size > 0
&& S_ISREG (st.st_mode)) {
- e_table_scrolled_load_state (E_TABLE_SCROLLED (cal_table->etable), filename);
+ e_table_load_state (e_table_scrolled_get_table(E_TABLE_SCROLLED (cal_table->etable)), filename);
}
}
@@ -479,6 +479,6 @@ e_calendar_table_save_state (ECalendarTable *cal_table,
g_return_if_fail (E_IS_CALENDAR_TABLE (cal_table));
- e_table_scrolled_save_state (E_TABLE_SCROLLED (cal_table->etable),
- filename);
+ e_table_save_state (e_table_scrolled_get_table(E_TABLE_SCROLLED (cal_table->etable)),
+ filename);
}