aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-07-05 21:24:20 +0800
committerChris Lahey <clahey@src.gnome.org>2001-07-05 21:24:20 +0800
commitd5227888f97878de36b7f457629c7aa479b6fe22 (patch)
tree80e0c8c8cc6535bb1cb320a0c0de3382a8a422ba /widgets/table
parent357dd344aa4c94e8f7d97788a07419cd27874b0e (diff)
downloadgsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.tar
gsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.tar.gz
gsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.tar.bz2
gsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.tar.lz
gsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.tar.xz
gsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.tar.zst
gsoc2013-evolution-d5227888f97878de36b7f457629c7aa479b6fe22.zip
Bumped the version number of gal to 0.8.99.8.
2001-07-05 Christopher James Lahey <clahey@ximian.com> * configure.in: Bumped the version number of gal to 0.8.99.8. From gal/e-table/ChangeLog: 2001-07-05 Christopher James Lahey <clahey@ximian.com> * e-table-one.c (one_is_cell_editable): Ask for the editability of row -1 instead of column 0 as we were before. svn path=/trunk/; revision=10799
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/e-table-one.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-one.c b/widgets/table/e-table-one.c
index 524005cd6e..eee4a916cb 100644
--- a/widgets/table/e-table-one.c
+++ b/widgets/table/e-table-one.c
@@ -60,7 +60,7 @@ one_is_cell_editable (ETableModel *etm, int col, int row)
ETableOne *one = E_TABLE_ONE(etm);
if (one->source)
- return e_table_model_is_cell_editable(one->source, 0, row);
+ return e_table_model_is_cell_editable(one->source, col, -1);
else
return FALSE;
}