diff options
Diffstat (limited to 'sw/source/core/access/accpara.cxx')
-rw-r--r-- | sw/source/core/access/accpara.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sw/source/core/access/accpara.cxx b/sw/source/core/access/accpara.cxx index 33e782b6c80d..566f1ba2a215 100644 --- a/sw/source/core/access/accpara.cxx +++ b/sw/source/core/access/accpara.cxx @@ -68,7 +68,6 @@ // #i10825# #include <parachangetrackinginfo.hxx> #include <com/sun/star/text/TextMarkupType.hpp> -#include <comphelper/stlunosequence.hxx> #include <comphelper/servicehelper.hxx> #include <algorithm> @@ -1389,13 +1388,9 @@ uno::Sequence< PropertyValue > SwAccessibleParagraph::getDefaultAttributes( else { const OUString* aRequestedAttrIter = - ::std::find( ::comphelper::stl_begin( aRequestedAttributes ), - ::comphelper::stl_end( aRequestedAttributes ), - sMMToPixelRatio ); - if ( aRequestedAttrIter != ::comphelper::stl_end( aRequestedAttributes ) ) - { + ::std::find( aRequestedAttributes.begin(), aRequestedAttributes.end(), sMMToPixelRatio ); + if ( aRequestedAttrIter != aRequestedAttributes.end() ) bProvideMMToPixelRatio = true; - } } } |