diff options
author | Bogdan B <buzea.bogdan@libreoffice.org> | 2023-11-05 20:59:17 +0100 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2023-11-05 22:24:47 +0100 |
commit | 1ad81f7e69b545340e340b54f9c9dd387b17cce0 (patch) | |
tree | d7d3b7248dc94f8213fc7b9f468d1667ead0eeb6 | |
parent | 389def871853c885289627452f40b3ae0a8dabc8 (diff) |
tdf#158067 Replace OUStringLiteral in accdoc
Change-Id: I88bfdf41137adf34ca5af4e73cf6ca487d8fe5ef
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158899
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r-- | sw/source/core/access/accdoc.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/access/accdoc.cxx b/sw/source/core/access/accdoc.cxx index d1bb9d84b150..a1cf511b8bcf 100644 --- a/sw/source/core/access/accdoc.cxx +++ b/sw/source/core/access/accdoc.cxx @@ -52,7 +52,6 @@ #include <dcontact.hxx> #include <svx/svdmark.hxx> constexpr OUString sServiceName = u"com.sun.star.text.AccessibleTextDocumentView"_ustr; -constexpr OUStringLiteral sImplementationName = u"com.sun.star.comp.Writer.SwAccessibleDocumentView"; using namespace ::com::sun::star; using namespace ::com::sun::star::accessibility; @@ -421,7 +420,7 @@ IMPL_LINK( SwAccessibleDocument, WindowChildEventListener, VclWindowEvent&, rEve OUString SAL_CALL SwAccessibleDocument::getImplementationName() { - return sImplementationName; + return u"com.sun.star.comp.Writer.SwAccessibleDocumentView"_ustr; } sal_Bool SAL_CALL SwAccessibleDocument::supportsService(const OUString& sTestServiceName) |