diff options
author | Miguel de Icaza <miguel@gnu.org> | 2001-01-16 07:25:42 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2001-01-16 07:25:42 +0800 |
commit | feccdbccfbf9fa1c4d2f8b4d50da3a764d475089 (patch) | |
tree | 3363907f161a30cf7ea9160e288c529396559d6d /widgets/table/e-table-header-item.c | |
parent | c152134378a6567dd69d6570017fc2ab1cb37f52 (diff) | |
download | gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.gz gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.bz2 gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.lz gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.xz gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.zst gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.zip |
Document all entry points. (e_table_specification_save_to_file): Change
2001-01-15 Miguel de Icaza <miguel@gnu.org>
* e-table-specification.c: Document all entry points.
(e_table_specification_save_to_file): Change prototype to return
the number of bytes written.
(e_table_specification_duplicate):
Implement a function to duplicate nodes.
(e_table_specification_save_to_node): Implement missing function.
(e_table_specification_save_to_file): Enable.
(e_table_specification_save_to_string): Enable.
(e_table_specification_load_from_node): Just load the normal
version of the click-to-add-message version, let other code
translate it.
(e_table_specification_load_from_string): Alter prototype to
return success code.
* e-table-specification.h: Do not store the translated version,
store the plain version, so we can restore this later during the
saving routines.
* e-table.c (et_real_construct): Translate click to add message here.
* e-table-header-item.c: Destroy config object if we are
destroyed.
svn path=/trunk/; revision=7518
Diffstat (limited to 'widgets/table/e-table-header-item.c')
-rw-r--r-- | widgets/table/e-table-header-item.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index e67b83edb5..839cb5bce2 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -102,6 +102,9 @@ ethi_destroy (GtkObject *object){ if (ethi->full_header) gtk_object_unref (GTK_OBJECT(ethi->full_header)); + if (ethi->config) + gtk_object_destroy (GTK_OBJECT (ethi->config)); + if (GTK_OBJECT_CLASS (ethi_parent_class)->destroy) (*GTK_OBJECT_CLASS (ethi_parent_class)->destroy) (object); } |