summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorBayram Çiçek <mail@bayramcicek.com.tr>2020-12-25 17:00:30 +0000
committerJulien Nabet <serval2412@yahoo.fr>2020-12-26 17:15:18 +0100
commitea14c98aaba550ecde4c4736d1a3abdc0fd451ef (patch)
treecc6f0256d5461769f4349dd7c4d92ee7713fe55c /sw/source
parent6204c94aeec9f65244c487edecf03a78c5740fbc (diff)
tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Id4034a57580f37fd71f841deec9edfe9b7c26a67 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108286 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/uibase/sidebar/SwPanelFactory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/sidebar/SwPanelFactory.cxx b/sw/source/uibase/sidebar/SwPanelFactory.cxx
index db9e6f29458a..fcf297dc3100 100644
--- a/sw/source/uibase/sidebar/SwPanelFactory.cxx
+++ b/sw/source/uibase/sidebar/SwPanelFactory.cxx
@@ -74,7 +74,7 @@ public:
{ return cppu::supportsService(this, ServiceName); }
css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override
- { return css::uno::Sequence<OUString>{"com.sun.star.ui.UIElementFactory"}; }
+ { return {"com.sun.star.ui.UIElementFactory"}; }
};
SwPanelFactory::SwPanelFactory()