diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-08 07:51:03 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-08 07:51:03 +0800 |
commit | 2caa218421d9488a472462de1af3502106037fcd (patch) | |
tree | 8c615d9ca6771af1c691f0953d349cf5cbb625d2 /calendar | |
parent | 27f63291c228098721871b4b9bc26e311779fd7f (diff) | |
download | gsoc2013-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')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-calendar-table.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index e32d1079d9..b970497853 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2000-12-07 Christopher James Lahey <clahey@helixcode.com> + + * gui/e-calendar-table.c: Got rid of code referencing the + ETableScrolled proxy functions. + 2000-12-07 JP Rosevear <jpr@helixcode.com> * conduits/calendar/calendar-conduit.c (post_sync): Ugly hack for syncing 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); } |