mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
winex11.drv: Remove some explicit LPARAM/WPARAM casts.
This commit is contained in:
parent
7e2b624896
commit
425cc7e033
3 changed files with 3 additions and 3 deletions
|
@ -790,7 +790,7 @@ static BOOL X11DRV_CLIPBOARD_RenderFormat(Display *display, LPWINE_CLIPDATA lpDa
|
||||||
* data requested into the clipboard.
|
* data requested into the clipboard.
|
||||||
*/
|
*/
|
||||||
TRACE("Sending WM_RENDERFORMAT message to hwnd(%p)\n", cbInfo.hWndOwner);
|
TRACE("Sending WM_RENDERFORMAT message to hwnd(%p)\n", cbInfo.hWndOwner);
|
||||||
SendMessageW(cbInfo.hWndOwner, WM_RENDERFORMAT, (WPARAM)lpData->wFormatID, 0);
|
SendMessageW(cbInfo.hWndOwner, WM_RENDERFORMAT, lpData->wFormatID, 0);
|
||||||
|
|
||||||
if (!lpData->hData) bret = FALSE;
|
if (!lpData->hData) bret = FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1601,7 +1601,7 @@ static BOOL internal_SetPixelFormat(X11DRV_PDEVICE *physDev,
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!SendMessageW(hwnd, WM_X11DRV_SET_WIN_FORMAT, (WPARAM)fmt->fmt_id, 0)) {
|
if(!SendMessageW(hwnd, WM_X11DRV_SET_WIN_FORMAT, fmt->fmt_id, 0)) {
|
||||||
ERR("Couldn't set format of the window, returning failure\n");
|
ERR("Couldn't set format of the window, returning failure\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -185,7 +185,7 @@ static LRESULT WINAPI tray_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lp
|
||||||
case WM_MBUTTONDBLCLK:
|
case WM_MBUTTONDBLCLK:
|
||||||
/* notify the owner hwnd of the message */
|
/* notify the owner hwnd of the message */
|
||||||
TRACE("relaying 0x%x\n", msg);
|
TRACE("relaying 0x%x\n", msg);
|
||||||
ret = PostMessageW(icon->owner, icon->callback_message, (WPARAM) icon->id, (LPARAM) msg);
|
ret = PostMessageW(icon->owner, icon->callback_message, icon->id, msg);
|
||||||
if (!ret && (GetLastError() == ERROR_INVALID_WINDOW_HANDLE))
|
if (!ret && (GetLastError() == ERROR_INVALID_WINDOW_HANDLE))
|
||||||
{
|
{
|
||||||
WARN( "application window was destroyed, removing icon %u\n", icon->id );
|
WARN( "application window was destroyed, removing icon %u\n", icon->id );
|
||||||
|
|
Loading…
Reference in a new issue