diff options
author | Dave Love <fx@gnu.org> | 2000-06-23 13:59:33 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-23 13:59:33 +0000 |
commit | af5e64bc8ecbd20b7b2b39cec96c3afa9cdfa820 (patch) | |
tree | b8a48e6c553cec14f74eb524a27c1146beec3818 /lwlib/lwlib-Xlw.c | |
parent | 123c6301b329161189c410cd2ddb2bdc22382b77 (diff) | |
download | emacs-af5e64bc8ecbd20b7b2b39cec96c3afa9cdfa820.tar.gz |
(xlw_popup_menu): Cast arg of pop_up_menu.
Diffstat (limited to 'lwlib/lwlib-Xlw.c')
-rw-r--r-- | lwlib/lwlib-Xlw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwlib/lwlib-Xlw.c b/lwlib/lwlib-Xlw.c index bcc2198ff4f..4f29ab2b3e8 100644 --- a/lwlib/lwlib-Xlw.c +++ b/lwlib/lwlib-Xlw.c @@ -226,7 +226,7 @@ xlw_popup_menu (widget, event) mw = (XlwMenuWidget)((CompositeWidget)widget)->composite.children [0]; if (event) - pop_up_menu (mw, event); + pop_up_menu (mw, (XButtonPressedEvent*) event); else { dummy.type = ButtonPress; |