diff options
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/extended/textwindowaccessibility.cxx | 2 | ||||
-rw-r--r-- | accessibility/source/helper/characterattributeshelper.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/textwindowaccessibility.cxx b/accessibility/source/extended/textwindowaccessibility.cxx index 3cebc2ba295e..63ea654a3728 100644 --- a/accessibility/source/extended/textwindowaccessibility.cxx +++ b/accessibility/source/extended/textwindowaccessibility.cxx @@ -1080,7 +1080,7 @@ void Document::retrieveRunAttributesImpl( aPropVal.State = css::beans::PropertyState_DIRECT_VALUE; aRunAttrSeq[ aPropVal.Name ] = aPropVal; } - if ( RequestedAttributes.getLength() == 0 ) + if ( !RequestedAttributes.hasElements() ) { rRunAttrSeq = aRunAttrSeq; } diff --git a/accessibility/source/helper/characterattributeshelper.cxx b/accessibility/source/helper/characterattributeshelper.cxx index 4935c4865de5..9cbeaaee8a7c 100644 --- a/accessibility/source/helper/characterattributeshelper.cxx +++ b/accessibility/source/helper/characterattributeshelper.cxx @@ -59,7 +59,7 @@ std::vector< PropertyValue > CharacterAttributesHelper::GetCharacterAttributes() Sequence< PropertyValue > CharacterAttributesHelper::GetCharacterAttributes( const css::uno::Sequence< OUString >& aRequestedAttributes ) { - if ( aRequestedAttributes.getLength() == 0 ) + if ( !aRequestedAttributes.hasElements() ) return comphelper::containerToSequence(GetCharacterAttributes()); std::vector< PropertyValue > aValues; |