aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-05-23 01:25:36 +0800
committerChris Lahey <clahey@src.gnome.org>2001-05-23 01:25:36 +0800
commitbc885bb22ebc81170ee0c6a602a836d4763777c7 (patch)
tree1fb6eb9185ea4ac4864574c25bc71cc4ead8b60d
parentd8e1a022dfb4e2514bfc928cffcc734e4ba85faa (diff)
downloadgsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar
gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.gz
gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.bz2
gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.lz
gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.xz
gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.zst
gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.zip
The double_click signal on the table item now emits the model row instead
2001-05-22 Christopher James Lahey <clahey@ximian.com> * e-table-group-leaf.c (etgl_double_click): The double_click signal on the table item now emits the model row instead of the view row so don't do the view to model conversion here. svn path=/trunk/; revision=9924
-rw-r--r--widgets/table/e-table-group-leaf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/table/e-table-group-leaf.c b/widgets/table/e-table-group-leaf.c
index bbc3b663ac..d527991a41 100644
--- a/widgets/table/e-table-group-leaf.c
+++ b/widgets/table/e-table-group-leaf.c
@@ -121,8 +121,7 @@ etgl_cursor_activated (GtkObject *object, gint row, ETableGroupLeaf *etgl)
static void
etgl_double_click (GtkObject *object, gint row, gint col, GdkEvent *event, ETableGroupLeaf *etgl)
{
- if (row < E_TABLE_SUBSET(etgl->ets)->n_map)
- e_table_group_double_click (E_TABLE_GROUP(etgl), E_TABLE_SUBSET(etgl->ets)->map_table[row], col, event);
+ e_table_group_double_click (E_TABLE_GROUP(etgl), row, col, event);
}
static gint