[gnumeric] chain gnm_undo_colrow_*_group_finalize t parent class



commit 7411bbaf35c02ed82ad74a251795bbe6e490ea16
Author: Andreas J Guelzow <aguelzow pyrshep ca>
Date:   Wed Feb 23 16:15:18 2011 -0700

    chain gnm_undo_colrow_*_group_finalize t parent class
    
    2011-02-23  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* src/undo.c (gnm_undo_colrow_*_group_finalize): chain to parent

 ChangeLog  |    4 ++++
 src/undo.c |    8 +++++++-
 2 files changed, 11 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index d07e67a..33cedb8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-02-23  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+	* src/undo.c (gnm_undo_colrow_*_group_finalize): chain to parent
+	
 2011-02-22  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* src/gui-clipboard.c (text_is_single_cell): new
diff --git a/src/undo.c b/src/undo.c
index 2ea488f..fdfc219 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -3,7 +3,7 @@
  * undo.c:
  *
  * Authors:
-  *  Andreas J. Guelzow  <aguelzow pyrshep ca>
+  * apparently missing chain Andreas J. Guelzow  <aguelzow pyrshep ca>
  *
  * (C) Copyright 2010 by Andreas J. Guelzow  <aguelzow pyrshep ca>
  *
@@ -48,6 +48,8 @@ gnm_undo_colrow_restore_state_group_finalize (GObject *o)
 	ua->saved_state = NULL;
 	colrow_index_list_destroy (ua->selection);
 	ua->selection = NULL;
+
+	G_OBJECT_CLASS (gnm_undo_colrow_restore_state_group_parent_class)->finalize (o);
 }
 
 static void
@@ -105,6 +107,8 @@ gnm_undo_colrow_set_sizes_finalize (GObject *o)
 
 	colrow_index_list_destroy (ua->selection);
 	ua->selection = NULL;
+
+	G_OBJECT_CLASS (gnm_undo_colrow_set_sizes_parent_class)->finalize (o);
 }
 
 static void
@@ -191,6 +195,8 @@ gnm_undo_filter_set_condition_finalize (GObject *o)
 
 	gnm_filter_condition_free (ua->cond);
 	ua->cond = NULL;
+
+	G_OBJECT_CLASS (gnm_undo_filter_set_condition_parent_class)->finalize (o);
 }
 
 static gboolean



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]