diff options
author | Chris Lahey <clahey@src.gnome.org> | 2000-03-21 10:50:04 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-03-21 10:50:04 +0800 |
commit | 5fe5e0f7431c00d4438eaed35825cb6a33dbe05f (patch) | |
tree | 58d4d2c17a7f3459af6f0b33f3e84032cb8379d2 /widgets/table/e-table-group.c | |
parent | cd47194eb72fbe291bbd0a04e3aa174c60eb7961 (diff) | |
download | gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.tar gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.tar.gz gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.tar.bz2 gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.tar.lz gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.tar.xz gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.tar.zst gsoc2013-evolution-5fe5e0f7431c00d4438eaed35825cb6a33dbe05f.zip |
i2000-03-20 Christopher James Lahey <clahey@helixcode.com>
* e-table-group-container.c, e-table-group-container.h,
e-table-group-leaf.c: Updated these to use the new ECanvas reflow
infrastructure.
* e-table-item.c, e-table-item.h: Updated these to use the new
ECanvas reflow infrastructure. Fixed the bounding box.
* e-table.c, e-table.h: Made the header have no extra space around it.
svn path=/trunk/; revision=2124
Diffstat (limited to 'widgets/table/e-table-group.c')
-rw-r--r-- | widgets/table/e-table-group.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/widgets/table/e-table-group.c b/widgets/table/e-table-group.c index ce7f1945f6..3729f41293 100644 --- a/widgets/table/e-table-group.c +++ b/widgets/table/e-table-group.c @@ -30,7 +30,6 @@ static GnomeCanvasGroupClass *etg_parent_class; enum { ROW_SELECTION, - RESIZE, LAST_SIGNAL }; @@ -220,16 +219,6 @@ e_table_group_get_ecol (ETableGroup *etg) } void -e_table_group_resize (ETableGroup *e_table_group) -{ - g_return_if_fail (e_table_group != NULL); - g_return_if_fail (E_IS_TABLE_GROUP (e_table_group)); - - gtk_signal_emit (GTK_OBJECT (e_table_group), - etg_signals [RESIZE]); -} - -void e_table_group_row_selection (ETableGroup *e_table_group, gint row, gboolean selected) { g_return_if_fail (e_table_group != NULL); @@ -350,7 +339,6 @@ etg_class_init (GtkObjectClass *object_class) item_class->event = etg_event; - klass->resize = NULL; klass->row_selection = NULL; klass->add = NULL; @@ -376,14 +364,6 @@ etg_class_init (GtkObjectClass *object_class) gtk_marshal_NONE__INT_INT, GTK_TYPE_NONE, 2, GTK_TYPE_INT, GTK_TYPE_INT); - etg_signals [RESIZE] = - gtk_signal_new ("resize", - GTK_RUN_LAST, - object_class->type, - GTK_SIGNAL_OFFSET (ETableGroupClass, resize), - gtk_marshal_NONE__NONE, - GTK_TYPE_NONE, 0); - gtk_object_class_add_signals (object_class, etg_signals, LAST_SIGNAL); } |