diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-07-21 21:27:37 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-07-21 21:27:37 +0800 |
commit | 56b5ddf1ca2d8cd63f2c10fba1b0018037c6ad69 (patch) | |
tree | a113d5e13c8072b912dbe830ec8b45e82eebec3b /addressbook/gui/component | |
parent | d573bf6a6e1aadb63300275276d43635668a015d (diff) | |
download | gsoc2013-evolution-56b5ddf1ca2d8cd63f2c10fba1b0018037c6ad69.tar.gz gsoc2013-evolution-56b5ddf1ca2d8cd63f2c10fba1b0018037c6ad69.tar.zst gsoc2013-evolution-56b5ddf1ca2d8cd63f2c10fba1b0018037c6ad69.zip |
Not prompting the delete confirmation dialog for cut contact operation.
Fixes #311090
svn path=/trunk/; revision=29833
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/addressbook-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-view.c b/addressbook/gui/component/addressbook-view.c index 78d44d83c9..9923c31a62 100644 --- a/addressbook/gui/component/addressbook-view.c +++ b/addressbook/gui/component/addressbook-view.c @@ -179,7 +179,7 @@ delete_contact_cb (BonoboUIComponent *uih, void *user_data, const char *path) AddressbookView *view = (AddressbookView *) user_data; EABView *v = get_current_view (view); if (v) - eab_view_delete_selection(v); + eab_view_delete_selection(v, TRUE); } static void |