Update for e_popup_menu_run prototype change.

* gui/widgets/e-addressbook-view.c (table_right_click):
	* gui/widgets/e-minicard.c (e_minicard_event): Update for
	e_popup_menu_run prototype change.

svn path=/trunk/; revision=7661
This commit is contained in:
Dan Winship
2001-01-20 00:20:31 +00:00
parent 7ed4e6f182
commit 3d64b2294f
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2001-01-19 Dan Winship <danw@ximian.com>
* gui/widgets/e-addressbook-view.c (table_right_click):
* gui/widgets/e-minicard.c (e_minicard_event): Update for
e_popup_menu_run prototype change.
2001-01-19 Jason Leach <jasonleach@usa.net>
(Adding a boolean "entry_changed" BonoboPropertyBag arg)

View File

@ -546,7 +546,7 @@ table_right_click(ETableScrolled *table, gint row, gint col, GdkEvent *event, EA
gtk_object_ref(GTK_OBJECT(card_and_book->book));
gtk_object_ref(GTK_OBJECT(card_and_book->view));
e_popup_menu_run (menu, (GdkEventButton *)event, 0, 0, card_and_book);
e_popup_menu_run (menu, event, 0, 0, card_and_book);
return TRUE;
} else
return FALSE;

View File

@ -580,7 +580,7 @@ e_minicard_event (GnomeCanvasItem *item, GdkEvent *event)
gtk_object_ref(GTK_OBJECT(mnp->minicard));
gtk_object_ref(GTK_OBJECT(mnp->parent));
gtk_object_ref(GTK_OBJECT(mnp->canvas));
e_popup_menu_run (menu, (GdkEventButton *)event, 0, E_IS_MINICARD_VIEW(mnp->parent) ? 0 : 1, mnp);
e_popup_menu_run (menu, event, 0, E_IS_MINICARD_VIEW(mnp->parent) ? 0 : 1, mnp);
}
break;