diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-03-15 04:40:21 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-03-15 04:40:21 +0800 |
commit | 4f298eab9e83c45991e7dce29ab556b90e080464 (patch) | |
tree | 3db866a043f4ea2371ec075fda17b23e3b469593 /widgets/table/e-tree.c | |
parent | 1911f19678bf2dbfa0fb1a8f316293c12c060872 (diff) | |
download | gsoc2013-evolution-4f298eab9e83c45991e7dce29ab556b90e080464.tar.gz gsoc2013-evolution-4f298eab9e83c45991e7dce29ab556b90e080464.tar.zst gsoc2013-evolution-4f298eab9e83c45991e7dce29ab556b90e080464.zip |
Made this return a boolean that returns whether the ETableSearch used the
2002-03-14 Christopher James Lahey <clahey@ximian.com>
* e-table-search.c, e-table-search.h (e_table_search_backspace):
Made this return a boolean that returns whether the ETableSearch
used the backspace at all.
* e-table.c (group_key_press), e-tree.c (item_key_press): Used the
new return value from e_table_search_backspace.
svn path=/trunk/; revision=16166
Diffstat (limited to 'widgets/table/e-tree.c')
-rw-r--r-- | widgets/table/e-tree.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c index 38133b7e56..c78342ef88 100644 --- a/widgets/table/e-tree.c +++ b/widgets/table/e-tree.c @@ -858,8 +858,9 @@ item_key_press (ETableItem *eti, int row, int col, GdkEvent *event, ETree *et) return_val = 1; break; case GDK_BackSpace: - e_table_search_backspace (et->priv->search); - break; + if (e_table_search_backspace (et->priv->search)) + return TRUE; + /* Fallthrough */ default: if ((key->state & ~(GDK_SHIFT_MASK | GDK_LOCK_MASK)) == 0 && (key->keyval >= GDK_a && key->keyval <= GDK_z) || |