aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-minicard.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-09 13:13:35 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-09 13:13:35 +0800
commit44628427f8c59beebd83979376cb87d64fd7da83 (patch)
tree5184544b100957c49601f22334bbf1e589bf7792 /addressbook/gui/widgets/e-minicard.c
parent37f85438b274e6285335f8484031f06522ce1fe2 (diff)
downloadgsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.gz
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.bz2
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.lz
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.xz
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/widgets/e-minicard.c')
-rw-r--r--addressbook/gui/widgets/e-minicard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c
index 2fa1d3c080..29bc178811 100644
--- a/addressbook/gui/widgets/e-minicard.c
+++ b/addressbook/gui/widgets/e-minicard.c
@@ -464,12 +464,12 @@ e_minicard_event (GnomeCanvasItem *item, GdkEvent *event)
{"Print", NULL, GTK_SIGNAL_FUNC(print), 0},
{"Delete", NULL, GTK_SIGNAL_FUNC(delete), 0},
{NULL, NULL, NULL, 0}};
- e_popup_menu_run (menu, (GdkEventButton *)event, 0, e_minicard);
+ e_popup_menu_run (menu, (GdkEventButton *)event, 0, 0, e_minicard);
} else {
EPopupMenu menu[] = { {"Save as VCard", NULL, GTK_SIGNAL_FUNC(save_as), 0},
{"Print", NULL, GTK_SIGNAL_FUNC(print), 0},
{NULL, NULL, NULL, 0}};
- e_popup_menu_run (menu, (GdkEventButton *)event, 0, e_minicard);
+ e_popup_menu_run (menu, (GdkEventButton *)event, 0, 0, e_minicard);
}
}
break;