tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

Change-Id: I5b484c6f6e950a59e811da818be8a5e1e6cfc65d
Reviewed-on: https://gerrit.libreoffice.org/29827
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Hieronymous
2016-10-14 18:54:30 +05:30
committed by Julien Nabet
parent ad59a9a9cd
commit f2c3efb124
5 changed files with 5 additions and 10 deletions

View File

@@ -95,8 +95,7 @@ public:
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) override
{ {
css::uno::Sequence< OUString > aSeq { "com.sun.star.ui.ModuleUIConfigurationManager" }; return {"com.sun.star.ui.ModuleUIConfigurationManager"};
return aSeq;
} }
// XComponent // XComponent

View File

@@ -80,8 +80,7 @@ public:
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) override
{ {
css::uno::Sequence< OUString > aSeq { "com.sun.star.ui.UIConfigurationManager" }; return {"com.sun.star.ui.UIConfigurationManager"};
return aSeq;
} }
explicit UIConfigurationManager( const css::uno::Reference< css::uno::XComponentContext > & rxContext ); explicit UIConfigurationManager( const css::uno::Reference< css::uno::XComponentContext > & rxContext );

View File

@@ -1284,8 +1284,7 @@ public:
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) override
{ {
css::uno::Sequence< OUString > aSeq { "com.sun.star.ui.WindowStateConfiguration" }; return {"com.sun.star.ui.WindowStateConfiguration"};
return aSeq;
} }
// XNameAccess // XNameAccess

View File

@@ -197,8 +197,7 @@ public:
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) override
{ {
css::uno::Sequence< OUString > aSeq { "com.sun.star.frame.PopupMenuController" }; return {"com.sun.star.frame.PopupMenuController"};
return aSeq;
} }
// XPopupMenuController // XPopupMenuController

View File

@@ -79,8 +79,7 @@ public:
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) override
{ {
css::uno::Sequence< OUString > aSeq { "com.sun.star.frame.PopupMenuController" }; return {"com.sun.star.frame.PopupMenuController"};
return aSeq;
} }
// XStatusListener // XStatusListener