From 6ceb1d0f2e23749fe03fab08ec338ba4d7782173 Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Thu, 12 Nov 2020 13:12:24 +0100 Subject: tdf#123936 Formatting files in module sc with clang-format Change-Id: I66cafda863e3e1e4559a57289c09925d68b0719c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105701 Reviewed-by: Christian Lohmaier Tested-by: Jenkins --- sc/inc/columniterator.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sc/inc/columniterator.hxx') diff --git a/sc/inc/columniterator.hxx b/sc/inc/columniterator.hxx index 46350afc32e9..3dbe76106ea2 100644 --- a/sc/inc/columniterator.hxx +++ b/sc/inc/columniterator.hxx @@ -32,7 +32,8 @@ class ScColumnTextWidthIterator public: ScColumnTextWidthIterator(const ScColumnTextWidthIterator&) = delete; const ScColumnTextWidthIterator& operator=(const ScColumnTextWidthIterator&) = delete; - ScColumnTextWidthIterator(const ScDocument& rDoc, ScColumn& rCol, SCROW nStartRow, SCROW nEndRow); + ScColumnTextWidthIterator(const ScDocument& rDoc, ScColumn& rCol, SCROW nStartRow, + SCROW nEndRow); /** * @param rDoc document instance. @@ -56,8 +57,8 @@ private: void checkEndRow(); }; -namespace sc { - +namespace sc +{ /** * This iterator lets you iterate over cells over specified range in a * single column. It does not modify the state of the cells, and therefore @@ -70,7 +71,7 @@ class ColumnIterator bool mbComplete; public: - ColumnIterator( const CellStoreType& rCells, SCROW nRow1, SCROW nRow2 ); + ColumnIterator(const CellStoreType& rCells, SCROW nRow1, SCROW nRow2); ~ColumnIterator(); void next(); @@ -83,7 +84,6 @@ public: ScRefCellValue getCell() const; }; - } #endif -- cgit