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 /winaccessibility | |
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 'winaccessibility')
-rw-r--r-- | winaccessibility/inc/AccObjectWinManager.hxx | 2 | ||||
-rw-r--r-- | winaccessibility/source/UAccCOM/AccTable.cxx | 6 | ||||
-rw-r--r-- | winaccessibility/source/UAccCOM/AccTable.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/winaccessibility/inc/AccObjectWinManager.hxx b/winaccessibility/inc/AccObjectWinManager.hxx index f57c1ac924de..1529bc40ec7f 100644 --- a/winaccessibility/inc/AccObjectWinManager.hxx +++ b/winaccessibility/inc/AccObjectWinManager.hxx @@ -107,7 +107,7 @@ public: bool NotifyAccEvent( css::accessibility::XAccessible* pXAcc,short state = 0 ); - LPARAM Get_ToATInterface(HWND hWnd, long lParam, WPARAM wParam); + LRESULT Get_ToATInterface(HWND hWnd, long lParam, WPARAM wParam); void DecreaseState( css::accessibility::XAccessible* pXAcc,unsigned short pState ); void IncreaseState( css::accessibility::XAccessible* pXAcc,unsigned short pState ); diff --git a/winaccessibility/source/UAccCOM/AccTable.cxx b/winaccessibility/source/UAccCOM/AccTable.cxx index 429258fee0d5..08b230c11193 100644 --- a/winaccessibility/source/UAccCOM/AccTable.cxx +++ b/winaccessibility/source/UAccCOM/AccTable.cxx @@ -567,7 +567,7 @@ STDMETHODIMP CAccTable::get_summary(IUnknown * * accessible) * @param column the column index. * @param isSelected the result. */ -STDMETHODIMP CAccTable::get_isColumnSelected(long column, unsigned char * isSelected) +STDMETHODIMP CAccTable::get_isColumnSelected(long column, boolean * isSelected) { SolarMutexGuard g; @@ -593,7 +593,7 @@ STDMETHODIMP CAccTable::get_isColumnSelected(long column, unsigned char * isSele * @param row the row index. * @param isSelected the result. */ -STDMETHODIMP CAccTable::get_isRowSelected(long row, unsigned char * isSelected) +STDMETHODIMP CAccTable::get_isRowSelected(long row, boolean * isSelected) { SolarMutexGuard g; @@ -621,7 +621,7 @@ STDMETHODIMP CAccTable::get_isRowSelected(long row, unsigned char * isSelected) * @param column the column index. * @param isSelected the result. */ -STDMETHODIMP CAccTable::get_isSelected(long row, long column, unsigned char * isSelected) +STDMETHODIMP CAccTable::get_isSelected(long row, long column, boolean * isSelected) { SolarMutexGuard g; diff --git a/winaccessibility/source/UAccCOM/AccTable.h b/winaccessibility/source/UAccCOM/AccTable.h index 6bc8b64d9569..56d9ae338d67 100644 --- a/winaccessibility/source/UAccCOM/AccTable.h +++ b/winaccessibility/source/UAccCOM/AccTable.h @@ -121,13 +121,13 @@ public: STDMETHOD(get_summary)(IUnknown * * accessible) override; // Determines if table column is selected. - STDMETHOD(get_isColumnSelected)(long column, unsigned char * isSelected) override; + STDMETHOD(get_isColumnSelected)(long column, boolean * isSelected) override; // Determines if table row is selected. - STDMETHOD(get_isRowSelected)(long row, unsigned char * isSelected) override; + STDMETHOD(get_isRowSelected)(long row, boolean * isSelected) override; // Determines if table cell is selected. - STDMETHOD(get_isSelected)(long row, long column, unsigned char * isSelected) override; + STDMETHOD(get_isSelected)(long row, long column, boolean * isSelected) override; // Selects a row and unselect all previously selected rows. STDMETHOD(selectRow)(long row ) override; |