Kaydet (Commit) 020a2eb5 authored tarafından Caolán McNamara's avatar Caolán McNamara

Accessible Descriptions are supposed to be human text (and translated)

Change-Id: I75e839d9276e98af0b255c2e40f30c42a700ff29
Reviewed-on: https://gerrit.libreoffice.org/69935
Tested-by: Jenkins
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst b70053ba
......@@ -1600,7 +1600,15 @@ sal_Int16 SAL_CALL SvtValueSetAcc::getAccessibleRole()
OUString SAL_CALL SvtValueSetAcc::getAccessibleDescription()
{
ThrowIfDisposed();
return OUString( "ValueSet" );
const SolarMutexGuard aSolarGuard;
OUString aRet;
if (mpParent)
{
aRet = mpParent->GetAccessibleDescription();
}
return aRet;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment