diff options
author | JP Rosevear <jpr@ximian.com> | 2001-10-22 23:12:40 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-10-22 23:12:40 +0800 |
commit | c44198513ebe9cea0fdb6041d8890ec0beeb55ae (patch) | |
tree | 424087f0267a87a5474e69801aa303298b550b55 /calendar/gui/e-meeting-time-sel.c | |
parent | d44b2ffe43fcf26f983e0365faac5f0aa7203bfc (diff) | |
download | gsoc2013-evolution-c44198513ebe9cea0fdb6041d8890ec0beeb55ae.tar.gz gsoc2013-evolution-c44198513ebe9cea0fdb6041d8890ec0beeb55ae.tar.zst gsoc2013-evolution-c44198513ebe9cea0fdb6041d8890ec0beeb55ae.zip |
we don't need to save the state
2001-10-22 JP Rosevear <jpr@ximian.com>
* gui/dialogs/meeting-page.c (meeting_page_destroy): we don't need
to save the state
* gui/e-meeting-time-sel.c (e_meeting_time_selector_destroy):
ditto
* gui/e-meeting-model.c (build_etable): listen for the etable
being destroyed
(table_destroy_cb): save the state when the etable is destroyed
svn path=/trunk/; revision=13872
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index aba83f9cf8..74cb9bcf12 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -819,7 +819,6 @@ e_meeting_time_selector_destroy (GtkObject *object) { EMeetingTimeSelector *mts; ETable *real_table; - char *filename; mts = E_MEETING_TIME_SELECTOR (object); @@ -827,12 +826,6 @@ e_meeting_time_selector_destroy (GtkObject *object) gdk_color_context_free (mts->color_context); gdk_bitmap_unref (mts->stipple); - - filename = g_strdup_printf ("%s/config/et-header-meeting-time-sel", - evolution_dir); - real_table = e_table_scrolled_get_table (E_TABLE_SCROLLED (mts->etable)); - e_table_save_state (real_table, filename); - g_free (filename); if (GTK_OBJECT_CLASS (parent_class)->destroy) (*GTK_OBJECT_CLASS (parent_class)->destroy)(object); |