1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

* lwlib/xlwmenu.c (pop_up_menu): Fix cast.

This commit is contained in:
Po Lu 2022-02-07 17:48:00 +08:00
parent 30d92721ce
commit a5e6a7c3bc

View file

@ -2743,5 +2743,5 @@ pop_up_menu (XlwMenuWidget mw, XButtonPressedEvent *event)
((XMotionEvent*)event)->is_hint = 0; ((XMotionEvent*)event)->is_hint = 0;
handle_motion_event (mw, (XMotionEvent*)event); handle_motion_event (mw, (XMotionEvent*)event);
XlwMenuRedisplay ((XlwMenuWidget) mw, NULL, None); XlwMenuRedisplay ((Widget) mw, NULL, None);
} }