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.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/test/source/sheet/xsubtotaldescriptor.cxx b/test/source/sheet/xsubtotaldescriptor.cxx
index fa5aca6345b0..87c2083ef9f5 100644
--- a/test/source/sheet/xsubtotaldescriptor.cxx
+++ b/test/source/sheet/xsubtotaldescriptor.cxx
@@ -21,13 +21,13 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
-
+namespace apitest
+{
void XSubTotalDescriptor::testAddNew()
{
- uno::Reference< sheet::XSubTotalDescriptor > xSTD(init(), uno::UNO_QUERY_THROW);
+ uno::Reference<sheet::XSubTotalDescriptor> xSTD(init(), uno::UNO_QUERY_THROW);
- uno::Sequence< sheet::SubTotalColumn > xCols;
+ uno::Sequence<sheet::SubTotalColumn> xCols;
xCols.realloc(1);
xCols[0].Column = 5;
xCols[0].Function = sheet::GeneralFunction_SUM;
@@ -37,11 +37,10 @@ void XSubTotalDescriptor::testAddNew()
void XSubTotalDescriptor::testClear()
{
- uno::Reference< sheet::XSubTotalDescriptor > xSTD(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSubTotalDescriptor> xSTD(init(), UNO_QUERY_THROW);
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to clear XSubTotalDescriptor", xSTD->clear());
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */