diff options
author | Dan Winship <danw@src.gnome.org> | 2001-01-20 08:20:31 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-01-20 08:20:31 +0800 |
commit | 3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5 (patch) | |
tree | ba7a21908c7dbe2f3694901dee01539d87b47727 /addressbook/gui/widgets | |
parent | 7ed4e6f1828bf1607690105ab439e02e9c1521cc (diff) | |
download | gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.tar gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.tar.gz gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.tar.bz2 gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.tar.lz gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.tar.xz gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.tar.zst gsoc2013-evolution-3d64b2294f7ac7e04daa9fc893e73a9add9ec8e5.zip |
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
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 2 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-minicard.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 2a817a7851..f52d2e43c2 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -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; diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c index 5813511315..b77b1bbfd2 100644 --- a/addressbook/gui/widgets/e-minicard.c +++ b/addressbook/gui/widgets/e-minicard.c @@ -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; |