diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-03-14 04:51:44 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-03-14 04:51:44 +0800 |
commit | 84d68e495549a6c14a730888e58ed6f24f4b017f (patch) | |
tree | 0a0db9a85508c9bc429993412b411cb64d7581dc /widgets/table/e-table.c | |
parent | 521ba6b4bf30269f16b511084db0f85009dbef95 (diff) | |
download | gsoc2013-evolution-84d68e495549a6c14a730888e58ed6f24f4b017f.tar.gz gsoc2013-evolution-84d68e495549a6c14a730888e58ed6f24f4b017f.tar.zst gsoc2013-evolution-84d68e495549a6c14a730888e58ed6f24f4b017f.zip |
Added this function.
2002-03-13 Christopher James Lahey <clahey@ximian.com>
* e-table-search.c, e-table-search.h (e_table_search_backspace):
Added this function.
* e-table.c, e-tree.c: Call the new function on backspace.
svn path=/trunk/; revision=16145
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r-- | widgets/table/e-table.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index e730dabbc7..a12350da1f 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -753,6 +753,9 @@ group_key_press (ETableGroup *etg, int row, int col, GdkEvent *event, ETable *et e_selection_model_select_as_key_press (E_SELECTION_MODEL (et->selection), row_local, col_local, key->state); return_val = 1; break; + case GDK_BackSpace: + e_table_search_backspace (et->search); + break; default: if ((key->keyval >= GDK_a && key->keyval <= GDK_z) || (key->keyval >= GDK_A && key->keyval <= GDK_Z) || |