diff options
Diffstat (limited to 'fpicker/source/win32/misc/WinImplHelper.cxx')
-rw-r--r-- | fpicker/source/win32/misc/WinImplHelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/misc/WinImplHelper.cxx b/fpicker/source/win32/misc/WinImplHelper.cxx index d4156bca3888..785e755ba9e0 100644 --- a/fpicker/source/win32/misc/WinImplHelper.cxx +++ b/fpicker/source/win32/misc/WinImplHelper.cxx @@ -184,7 +184,7 @@ void SAL_CALL ListboxDeleteItem( HWND hwnd, const Any& aPosition, const Referenc sal_Int32 nPos; aPosition >>= nPos; - LRESULT lRet = SendMessage( hwnd, CB_DELETESTRING, nPos, 0 ); + LRESULT lRet = SendMessageW( hwnd, CB_DELETESTRING, nPos, 0 ); // if the return value is CB_ERR the given // index was not correct |