diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-03-27 09:02:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-03-27 11:30:37 +0100 |
commit | b07a990e51f9bef637cfdcb31b904c223d7ce738 (patch) | |
tree | 8d326b1ad8ae85349e3b55fed5daa00a14abaaf1 /sal | |
parent | 89a95f5fa5a2e10d2c67d33270fa31404df33fd5 (diff) |
loplugin:typedefparam (clang-cl)
Change-Id: I07604028845c49cc084927e21db7f21c5d053bab
Reviewed-on: https://gerrit.libreoffice.org/69796
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/profile.cxx | 2 | ||||
-rw-r--r-- | sal/qa/systools/test_comtools.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/profile.cxx b/sal/osl/w32/profile.cxx index 69fe2b4b94da..8fc6ee9d076f 100644 --- a/sal/osl/w32/profile.cxx +++ b/sal/osl/w32/profile.cxx @@ -158,7 +158,7 @@ static rtl_uString* osl_ProfileGenerateExtension(rtl_uString* ustrFileName, rtl_ static bool osl_getProfileName(rtl_uString* strPath, rtl_uString* strName, rtl_uString** strProfileName); -oslProfile SAL_CALL osl_openProfile(rtl_uString *strProfileName, sal_uInt32 Flags) +oslProfile SAL_CALL osl_openProfile(rtl_uString *strProfileName, oslProfileOption Flags) { osl_TFile* pFile = nullptr; osl_TProfileImpl* pProfile; diff --git a/sal/qa/systools/test_comtools.cxx b/sal/qa/systools/test_comtools.cxx index 284a28b1f407..096851c9e989 100644 --- a/sal/qa/systools/test_comtools.cxx +++ b/sal/qa/systools/test_comtools.cxx @@ -46,7 +46,7 @@ public: return cnt; } - HRESULT __stdcall QueryInterface(REFIID riid, LPVOID* ppv) override + HRESULT __stdcall QueryInterface(REFIID riid, void** ppv) override { if (riid == IID_IUnknown) { |