summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/dataaccess/ModelImpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/dataaccess/ModelImpl.cxx')
-rw-r--r--dbaccess/source/core/dataaccess/ModelImpl.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.cxx b/dbaccess/source/core/dataaccess/ModelImpl.cxx
index 27b9f6fe8069..48643a9c4892 100644
--- a/dbaccess/source/core/dataaccess/ModelImpl.cxx
+++ b/dbaccess/source/core/dataaccess/ModelImpl.cxx
@@ -470,14 +470,14 @@ void ODatabaseModelImpl::impl_construct_nothrow()
try
{
// the set of property value types in the bag is limited:
- Sequence< Type > aAllowedTypes(6);
- Type* pAllowedType = aAllowedTypes.getArray();
- *pAllowedType++ = ::cppu::UnoType<sal_Bool>::get();
- *pAllowedType++ = ::cppu::UnoType<double>::get();
- *pAllowedType++ = ::cppu::UnoType<OUString>::get();
- *pAllowedType++ = ::cppu::UnoType<sal_Int32>::get();
- *pAllowedType++ = ::cppu::UnoType<sal_Int16>::get();
- *pAllowedType++ = cppu::UnoType<Sequence< Any >>::get();
+ Sequence< Type > aAllowedTypes({
+ cppu::UnoType<sal_Bool>::get(),
+ cppu::UnoType<double>::get(),
+ cppu::UnoType<OUString>::get(),
+ cppu::UnoType<sal_Int32>::get(),
+ cppu::UnoType<sal_Int16>::get(),
+ cppu::UnoType<Sequence< Any >>::get(),
+ });
m_xSettings = PropertyBag::createWithTypes( m_aContext, aAllowedTypes, false/*AllowEmptyPropertyName*/, true/*AutomaticAddition*/ );