[Libreoffice-commits] core.git: configmgr/source
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Fri May 14 21:14:41 UTC 2021
configmgr/source/access.cxx | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
New commits:
commit 141f3e101508e7d0a83bd34a5cf48673fe91e44c
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Fri May 14 11:08:45 2021 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri May 14 23:13:59 2021 +0200
Directly partly initialize vector in access.cxx
Change-Id: Iac19920caf0a9bdfa07b025c19c7659b96374c7e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115590
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/configmgr/source/access.cxx b/configmgr/source/access.cxx
index fa2aa1fe6eb0..02e3f557c684 100644
--- a/configmgr/source/access.cxx
+++ b/configmgr/source/access.cxx
@@ -173,19 +173,19 @@ css::uno::Sequence< css::uno::Type > Access::getTypes()
assert(thisIs(IS_ANY));
osl::MutexGuard g(*lock_);
checkLocalizedPropertyAccess();
- std::vector< css::uno::Type > types;
- types.push_back(cppu::UnoType< css::uno::XInterface >::get());
- types.push_back(cppu::UnoType< css::uno::XWeak >::get());
- types.push_back(cppu::UnoType< css::lang::XTypeProvider >::get());
- types.push_back(cppu::UnoType< css::lang::XServiceInfo >::get());
- types.push_back(cppu::UnoType< css::lang::XComponent >::get());
- types.push_back(cppu::UnoType< css::container::XContainer >::get());
- types.push_back(cppu::UnoType< css::beans::XExactName >::get());
- types.push_back(cppu::UnoType< css::container::XHierarchicalName >::get());
- types.push_back(cppu::UnoType< css::container::XNamed >::get());
- types.push_back(cppu::UnoType< css::beans::XProperty >::get());
- types.push_back(cppu::UnoType< css::container::XElementAccess >::get());
- types.push_back(cppu::UnoType< css::container::XNameAccess >::get());
+ std::vector< css::uno::Type > types { cppu::UnoType< css::uno::XInterface >::get(),
+ cppu::UnoType< css::uno::XWeak >::get(),
+ cppu::UnoType< css::lang::XTypeProvider >::get(),
+ cppu::UnoType< css::lang::XServiceInfo >::get(),
+ cppu::UnoType< css::lang::XComponent >::get(),
+ cppu::UnoType< css::container::XContainer >::get(),
+ cppu::UnoType< css::beans::XExactName >::get(),
+ cppu::UnoType< css::container::XHierarchicalName >::get(),
+ cppu::UnoType< css::container::XNamed >::get(),
+ cppu::UnoType< css::beans::XProperty >::get(),
+ cppu::UnoType< css::container::XElementAccess >::get(),
+ cppu::UnoType< css::container::XNameAccess >::get()
+ };
if (getNode()->kind() == Node::KIND_GROUP) {
types.push_back(cppu::UnoType< css::beans::XPropertySetInfo >::get());
types.push_back(cppu::UnoType< css::beans::XPropertySet >::get());
More information about the Libreoffice-commits
mailing list