summaryrefslogtreecommitdiff
path: root/test/source/sheet/xsubtotaldescriptor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/source/sheet/xsubtotaldescriptor.cxx')
-rw-r--r--test/source/sheet/xsubtotaldescriptor.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/source/sheet/xsubtotaldescriptor.cxx b/test/source/sheet/xsubtotaldescriptor.cxx
index 87c2083ef9f5..037963a28cf5 100644
--- a/test/source/sheet/xsubtotaldescriptor.cxx
+++ b/test/source/sheet/xsubtotaldescriptor.cxx
@@ -27,10 +27,8 @@ void XSubTotalDescriptor::testAddNew()
{
uno::Reference<sheet::XSubTotalDescriptor> xSTD(init(), uno::UNO_QUERY_THROW);
- uno::Sequence<sheet::SubTotalColumn> xCols;
- xCols.realloc(1);
- xCols[0].Column = 5;
- xCols[0].Function = sheet::GeneralFunction_SUM;
+ uno::Sequence<sheet::SubTotalColumn> xCols{ { /* Column */ 5,
+ /* Function */ sheet::GeneralFunction_SUM } };
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to add column", xSTD->addNew(xCols, 1));
}