diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-09 13:13:35 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-09 13:13:35 +0800 |
commit | 44628427f8c59beebd83979376cb87d64fd7da83 (patch) | |
tree | 5184544b100957c49601f22334bbf1e589bf7792 /addressbook/gui/component/addressbook.c | |
parent | 37f85438b274e6285335f8484031f06522ce1fe2 (diff) | |
download | gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.gz gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.zst gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.zip |
Changed e_popup_menu_run call to match the new arguments.
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* gui/component/addressbook.c, gui/minicard/e-minicard.c: Changed
e_popup_menu_run call to match the new arguments.
* gui/component/addressbook.oafinfo: Fixed this file to work
properly.
* gui/minicard/e-minicard-control.c: Use the correct oafinfo ID
here. Also cleaned up the code a bit with the help of Michael
Meeks.
svn path=/trunk/; revision=4627
Diffstat (limited to 'addressbook/gui/component/addressbook.c')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index d25e41c313..3df553c1bd 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -945,7 +945,7 @@ table_right_click(ETableScrolled *table, gint row, gint col, GdkEvent *event, Ad ECard *card = e_addressbook_model_get_card(E_ADDRESSBOOK_MODEL(view->model), row); EPopupMenu menu[] = { {"Save as VCard", NULL, GTK_SIGNAL_FUNC(save_as), 0}, {NULL, NULL, NULL, 0} }; - e_popup_menu_run (menu, (GdkEventButton *)event, 0, card); + e_popup_menu_run (menu, (GdkEventButton *)event, 0, 0, card); return TRUE; } |