* 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;
handle_motion_event (mw, (XMotionEvent*)event);
XlwMenuRedisplay ((XlwMenuWidget) mw, NULL, None);
XlwMenuRedisplay ((Widget) mw, NULL, None);
}