diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2005-03-01 06:20:08 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-03-01 06:20:08 +0800 |
commit | 6eb6726b981a35fd8cd83c6f663d6c47bf4d7180 (patch) | |
tree | 5eb61d2788acc02c6fb9c108a2fe84629c549702 | |
parent | 30a16a0b7e7bffa0c543efe821297ad7fe14dbf7 (diff) | |
download | gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.tar gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.tar.gz gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.tar.bz2 gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.tar.lz gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.tar.xz gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.tar.zst gsoc2013-evolution-6eb6726b981a35fd8cd83c6f663d6c47bf4d7180.zip |
Change the e-popup item type for "Cut" from E_POPUP_BAR to E_POPUP_ITEM
2005-02-26 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/widgets/e-addressbook-view.c :
Change the e-popup item type for "Cut"
from E_POPUP_BAR to E_POPUP_ITEM
Fixes #73013
svn path=/trunk/; revision=28920
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index f104dea64a..9dcd26121c 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,11 @@ +2005-02-26 Sivaiah Nallagatla <snallagatla@novell.com> + + * gui/widgets/e-addressbook-view.c : + Change the e-popup item type for "Cut" + from E_POPUP_BAR to E_POPUP_ITEM + + Fixes #73013 + 2005-02-25 Sivaiah Nallagatla <snallagatla@novell.com> * gui/conact-editor/eab-editor.c diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 5f8397161b..ece377ad9e 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -929,7 +929,7 @@ static EPopupItem eabv_popup_items[] = { { E_POPUP_ITEM, "90.moveto", N_("Move to Address Book..."), move_to_folder, NULL, NULL, 0, EAB_POPUP_SELECT_ANY|EAB_POPUP_SELECT_EDITABLE }, { E_POPUP_BAR, "a0.bar" }, - { E_POPUP_BAR, "b0.cut", N_("Cut"), cut, NULL, "stock_cut", 0, EAB_POPUP_SELECT_ANY|EAB_POPUP_SELECT_EDITABLE }, + { E_POPUP_ITEM, "b0.cut", N_("Cut"), cut, NULL, "stock_cut", 0, EAB_POPUP_SELECT_ANY|EAB_POPUP_SELECT_EDITABLE }, { E_POPUP_ITEM, "c0.copy", N_("Copy"), copy, NULL, "stock_copy", 0, EAB_POPUP_SELECT_ANY }, { E_POPUP_ITEM, "d0.paste", N_("Paste"), paste, NULL, "stock_paste", 0, EAB_POPUP_SELECT_EDITABLE }, { E_POPUP_ITEM, "e0.delete", N_("Delete"), delete, NULL, "stock_delete", 0, EAB_POPUP_SELECT_EDITABLE|EAB_POPUP_SELECT_ANY }, |