summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorViKrAm-Baisclear <vikrambais02@gmail.com>2021-01-16 15:52:59 +0530
committerJan-Marek Glogowski <glogow@fbihome.de>2021-02-07 17:25:20 +0100
commite520b32a8ba59878fa15012505644ab903f53bbf (patch)
treea239f9671a7c24c27e7e6874599b668460122046 /starmath
parent72fa32f6d9ad2c0fe8aa03f60797aa13c11e2085 (diff)
tdf#88205 Adapt use of uno::Sequence to use initializer_list ctor
Change-Id: I2fe98b4bfb221c838a8810f2c08b3e7723e40e8e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109428 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/unofilter.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/starmath/source/unofilter.cxx b/starmath/source/unofilter.cxx
index 719681af4b4b..610d4281c765 100644
--- a/starmath/source/unofilter.cxx
+++ b/starmath/source/unofilter.cxx
@@ -105,8 +105,7 @@ sal_Bool MathTypeFilter::supportsService(const OUString& rServiceName)
uno::Sequence<OUString> MathTypeFilter::getSupportedServiceNames()
{
- uno::Sequence<OUString> aRet = { OUString("com.sun.star.document.ImportFilter") };
- return aRet;
+ return { "com.sun.star.document.ImportFilter" };
}
extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*