summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-10 23:15:33 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-11 08:56:10 +0100
commitc8d46b68aec94528c3c787484df3b2ad5479d46b (patch)
tree5db878877a521a632ef1b3eb80fe8dbcd134a409 /fpicker
parent74254cd81542e308d905782da0500ba9ab9dba62 (diff)
loplugin:redundantcast (clang-cl)
Change-Id: Ie36853231d58fdf985c32497732abe34f7828d7b Reviewed-on: https://gerrit.libreoffice.org/46201 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/folderpicker/MtaFop.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/folderpicker/MtaFop.cxx b/fpicker/source/win32/folderpicker/MtaFop.cxx
index 4958699a7e5d..497d1ebba835 100644
--- a/fpicker/source/win32/folderpicker/MtaFop.cxx
+++ b/fpicker/source/win32/folderpicker/MtaFop.cxx
@@ -704,7 +704,7 @@ ATOM SAL_CALL CMtaFolderPicker::RegisterStaRequestWindowClass( )
wcex.cbSize = sizeof(wcex);
wcex.style = 0;
- wcex.lpfnWndProc = static_cast< WNDPROC >( CMtaFolderPicker::StaWndProc );
+ wcex.lpfnWndProc = CMtaFolderPicker::StaWndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = m_hInstance;