diff options
author | Philipp Hofer <philipp.hofer@protonmail.com> | 2020-11-12 13:12:24 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-11-19 01:36:55 +0100 |
commit | 6ceb1d0f2e23749fe03fab08ec338ba4d7782173 (patch) | |
tree | 44e69c2fdf12594169ca3a052224368faa967185 /sc/inc/columniterator.hxx | |
parent | 695280feb90729fde1a7ecf1c409ae16f8281a46 (diff) |
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 <lohmaier+LibreOffice@googlemail.com>
Tested-by: Jenkins
Diffstat (limited to 'sc/inc/columniterator.hxx')
-rw-r--r-- | sc/inc/columniterator.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
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 |