summaryrefslogtreecommitdiff
path: root/test/source/sheet/xviewfreezable.cxx
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:22:23 +0100
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-11-18 12:04:26 +0100
commitf5e3b2e83ab463064f100a9cd93f09cadaae2292 (patch)
treeb3e543959112187befbf3e320d7563fb9d382be1 /test/source/sheet/xviewfreezable.cxx
parent831148376eed244292638d57099ab92fe4bdffbe (diff)
tdf#123936 Formatting files in module test with clang-format
Change-Id: I8b2cc4917564626432ce0219e24f253a534ce8e8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105719 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'test/source/sheet/xviewfreezable.cxx')
-rw-r--r--test/source/sheet/xviewfreezable.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/source/sheet/xviewfreezable.cxx b/test/source/sheet/xviewfreezable.cxx
index 4a478f1ef149..2e13ffd294f0 100644
--- a/test/source/sheet/xviewfreezable.cxx
+++ b/test/source/sheet/xviewfreezable.cxx
@@ -16,18 +16,17 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
-
+namespace apitest
+{
void XViewFreezable::testFreeze()
{
- uno::Reference< sheet::XViewFreezable > xViewFreezable(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XViewFreezable> xViewFreezable(init(), UNO_QUERY_THROW);
CPPUNIT_ASSERT_MESSAGE("View has already frozen panes", !xViewFreezable->hasFrozenPanes());
- xViewFreezable->freezeAtPosition(1,1);
+ xViewFreezable->freezeAtPosition(1, 1);
CPPUNIT_ASSERT_MESSAGE("Unable to freeze pane", xViewFreezable->hasFrozenPanes());
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */