mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
DialogBox.c: fix ptr<->int conversion
This commit is contained in:
parent
237a3a4d94
commit
6d50de9448
1 changed files with 1 additions and 1 deletions
|
@ -831,7 +831,7 @@ ButtonCallback(
|
||||||
{
|
{
|
||||||
cb_data.reason = XmCR_DIALOG_BUTTON;
|
cb_data.reason = XmCR_DIALOG_BUTTON;
|
||||||
cb_data.event = b_cb_data->event;
|
cb_data.event = b_cb_data->event;
|
||||||
cb_data.button_position = (int) client_data;
|
cb_data.button_position = (int) ((long)client_data);
|
||||||
cb_data.button = g;
|
cb_data.button = g;
|
||||||
XtCallCallbackList ((Widget) mgr, cb_list, &cb_data);
|
XtCallCallbackList ((Widget) mgr, cb_list, &cb_data);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue