This is an automated email from the ASF dual-hosted git repository. damjan pushed a commit to branch windows-amd64 in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit c2ec84c8f75d3e9bad2becd6fd18de8df407712a Author: Damjan Jovanovic <dam...@apache.org> AuthorDate: Thu Jan 2 22:14:16 2025 +0200 wParam is already a UINT_PTR, no need to use a bad conversion function. Patch by: me --- main/vcl/win/source/window/salframe.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/vcl/win/source/window/salframe.cxx b/main/vcl/win/source/window/salframe.cxx index ef036cbd14..d86a16c401 100644 --- a/main/vcl/win/source/window/salframe.cxx +++ b/main/vcl/win/source/window/salframe.cxx @@ -6255,12 +6255,12 @@ LRESULT CALLBACK SalFrameWndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lP break; #if WINVER >= 0x0500 case WM_IME_REQUEST: - if ( PtrToInt( wParam ) == IMR_RECONVERTSTRING ) + if ( wParam == IMR_RECONVERTSTRING ) { nRet = ImplHandleIMEReconvertString( hWnd, lParam ); rDef = FALSE; } - else if( PtrToInt( wParam ) == IMR_CONFIRMRECONVERTSTRING ) + else if( wParam == IMR_CONFIRMRECONVERTSTRING ) { nRet = ImplHandleIMEConfirmReconvertString( hWnd, lParam ); rDef = FALSE;