aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-selection-model.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@ximian.com>2001-01-12 16:16:35 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2001-01-12 16:16:35 +0800
commite779159c4b5c3b79fe29cec7e277d2901a0790af (patch)
tree7925833c34877be05b3ce5057c21531e227fc565 /widgets/table/e-table-selection-model.c
parent0db9dfca79bc3292c6459e5fef8603b83128427d (diff)
downloadgsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.tar
gsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.tar.gz
gsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.tar.bz2
gsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.tar.lz
gsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.tar.xz
gsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.tar.zst
gsoc2013-evolution-e779159c4b5c3b79fe29cec7e277d2901a0790af.zip
New function. Tells whether a key should begin editing. (ect_event,
2001-01-12 Miguel de Icaza <miguel@ximian.com> * e-cell-text.c (key_begins_editing): New function. Tells whether a key should begin editing. (ect_event, GDK_KEY_PRESS/RELEASE): check whether we should start editing. svn path=/trunk/; revision=7445
Diffstat (limited to 'widgets/table/e-table-selection-model.c')
-rw-r--r--widgets/table/e-table-selection-model.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/widgets/table/e-table-selection-model.c b/widgets/table/e-table-selection-model.c
index 05f549c92a..a1001438ac 100644
--- a/widgets/table/e-table-selection-model.c
+++ b/widgets/table/e-table-selection-model.c
@@ -447,10 +447,11 @@ etsm_move_selection_end (ETableSelectionModel *selection, int row)
e_table_selection_model_signals [SELECTION_CHANGED]);
}
-void e_table_selection_model_do_something (ETableSelectionModel *selection,
- guint row,
- guint col,
- GdkModifierType state)
+void
+e_table_selection_model_do_something (ETableSelectionModel *selection,
+ guint row,
+ guint col,
+ GdkModifierType state)
{
gint shift_p = state & GDK_SHIFT_MASK;
gint ctrl_p = state & GDK_CONTROL_MASK;