summaryrefslogtreecommitdiffstats
path: root/winaccessibility
diff options
context:
space:
mode:
Diffstat (limited to 'winaccessibility')
-rw-r--r--winaccessibility/source/UAccCOM/AccActionBase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/winaccessibility/source/UAccCOM/AccActionBase.cxx b/winaccessibility/source/UAccCOM/AccActionBase.cxx
index c1227a33c55a..a074c4895b37 100644
--- a/winaccessibility/source/UAccCOM/AccActionBase.cxx
+++ b/winaccessibility/source/UAccCOM/AccActionBase.cxx
@@ -165,7 +165,7 @@ STDMETHODIMP CAccActionBase::get_keyBinding(
if( !binding.is() )
return E_FAIL;
- long nCount = (binding.get())->getAccessibleKeyBindingCount();
+ long nCount = binding.get()->getAccessibleKeyBindingCount();
*keyBinding = static_cast<BSTR*>(::CoTaskMemAlloc(nCount*sizeof(BSTR)));
@@ -175,7 +175,7 @@ STDMETHODIMP CAccActionBase::get_keyBinding(
for( int index = 0;index < nCount;index++ )
{
- auto const wString = GetkeyBindingStrByXkeyBinding( (binding.get())->getAccessibleKeyBinding(index) );
+ auto const wString = GetkeyBindingStrByXkeyBinding( binding.get()->getAccessibleKeyBinding(index) );
(*keyBinding)[index] = SysAllocString(o3tl::toW(wString.getStr()));
}