summaryrefslogtreecommitdiff
path: root/src/xmenu.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2010-07-15 23:53:32 +0200
committerAndreas Schwab <schwab@linux-m68k.org>2010-07-15 23:53:32 +0200
commit2b23d2a6b11385b571eeac64f3c1b0e8d194823c (patch)
tree3b239d3cb5999523509fd074409f2b88a1138cd8 /src/xmenu.c
parentc4affd2cb4ddec78e76853e8518400d8b2a23ddb (diff)
downloademacs-2b23d2a6b11385b571eeac64f3c1b0e8d194823c.tar.gz
* xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp argument.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r--src/xmenu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index 4b99297e772..8da68c6d876 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -1562,7 +1562,8 @@ pop_down_menu (Lisp_Object arg)
menu pops down.
menu_item_selection will be set to the selection. */
static void
-create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv, int x, int y, int for_click, unsigned int timestamp)
+create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv,
+ int x, int y, int for_click, EMACS_UINT timestamp)
{
int i;
Arg av[2];
@@ -2275,7 +2276,8 @@ pop_down_menu (Lisp_Object arg)
Lisp_Object
-xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps, Lisp_Object title, char **error, unsigned int timestamp)
+xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps,
+ Lisp_Object title, char **error, EMACS_UINT timestamp)
{
Window root;
XMenu *menu;