diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-03-16 10:18:40 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-03-16 10:18:40 +0800 |
commit | 0709fc318feae5c38cf678916d54450eff7975c0 (patch) | |
tree | db22add2501746639b78fdaec9f24d087c96c4a4 /addressbook/gui/component | |
parent | 066b7b5e9f417376dde95f7220ba94bdd11070a0 (diff) | |
download | gsoc2013-evolution-0709fc318feae5c38cf678916d54450eff7975c0.tar.gz gsoc2013-evolution-0709fc318feae5c38cf678916d54450eff7975c0.tar.zst gsoc2013-evolution-0709fc318feae5c38cf678916d54450eff7975c0.zip |
Update to use new EPopupMenu API.
2002-03-15 Jeffrey Stedfast <fejj@ximian.com>
* gui/widgets/e-addressbook-view.c (table_right_click): Update to
use new EPopupMenu API.
* gui/widgets/e-addressbook-reflow-adapter.c
(e_addressbook_reflow_adapter_right_click): Update to use new
EPopupMenu API.
* gui/component/select-names/e-select-names.c
(section_right_click_cb): Update to match new EPopupMenu api.
svn path=/trunk/; revision=16183
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index e0cc438209..1746171838 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -849,9 +849,8 @@ static void section_right_click_cb (EText *text, GdkEventButton *ev, gint pos, ESelectNamesChild *child) { EPopupMenu right_click_menu[] = { - { N_("Remove"), NULL, - GTK_SIGNAL_FUNC (remove_cb), NULL, 0 }, - { NULL, NULL, NULL, 0 } + { N_("Remove"), NULL, GTK_SIGNAL_FUNC (remove_cb), NULL, NULL, 0 }, + E_POPUP_TERMINATOR }; gint index; |