aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-04-17 13:53:32 +0800
committerChris Toshok <toshok@src.gnome.org>2000-04-17 13:53:32 +0800
commit832bcdf998ea2b015a9b6904f72bfb3949f1b80a (patch)
tree43af512afb6bb6ef7ca50b3ac3a0d211d928a36c /widgets/table/e-cell.c
parent3f0d6f5cf6914eec8040b569af95898d6e99a0fc (diff)
downloadgsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar
gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.gz
gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.bz2
gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.lz
gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.xz
gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.zst
gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.zip
add table-size-test
* Makefile.am (noinst_PROGRAMS): add table-size-test * .cvsignore: add table-size-test. * e-cell-text.c (ect_ecent): use e_table_model_is_cell_editable instead of E_CELL_EDITABLE. * e-cell-toggle.c (etog_event): same. * e-cell.c (e_cell_init): don't call e_cell_set_editable. that info comes from the model. (e_cell_set_editable): removed function. * e-cell.h: remove the E_CELL_EDITABLE flag. that should be retrieved from the model. also, remove the prototype for e_cell_set_editable. * e-table-size-test.c: new file, for a stress test of sorts, of a large, uneditable e-table. svn path=/trunk/; revision=2468
Diffstat (limited to 'widgets/table/e-cell.c')
-rw-r--r--widgets/table/e-cell.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/widgets/table/e-cell.c b/widgets/table/e-cell.c
index d038f80b5c..b472b6f6ff 100644
--- a/widgets/table/e-cell.c
+++ b/widgets/table/e-cell.c
@@ -109,10 +109,6 @@ e_cell_class_init (GtkObjectClass *object_class)
static void
e_cell_init (GtkObject *object)
{
- /*
- * By default we are editable, that is what the old behaviour was
- */
- e_cell_set_editable (E_CELL (object), TRUE);
}
E_MAKE_TYPE(e_cell, "ECell", ECell, e_cell_class_init, e_cell_init, PARENT_TYPE);
@@ -178,13 +174,3 @@ e_cell_leave_edit (ECellView *ecell_view, int model_col, int view_col, int row,
E_CELL_CLASS (GTK_OBJECT (ecell_view->ecell)->klass)->leave_edit (
ecell_view, model_col, view_col, row, edit_context);
}
-
-void
-e_cell_set_editable (ECell *ecell, gboolean editable)
-{
- if (editable)
- GTK_OBJECT (ecell)->flags |= E_CELL_EDITABLE;
- else
- GTK_OBJECT (ecell)->flags &= ~E_CELL_EDITABLE;
-}
-