diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-07 08:25:16 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-07 09:54:01 +0100 |
commit | dcd592731c632f05f851b87567acb417b53687b1 (patch) | |
tree | 6972c9b1c7c7e9c5173608bd30b44975b39836a3 /sc | |
parent | 31e8084fc07c3de09230c0f0c6ed947b3de98df1 (diff) |
improve formatting
Change-Id: Id652ff18023965cb2bcc7c10520f95a51e8ac15d
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/table4.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sc/source/core/data/table4.cxx b/sc/source/core/data/table4.cxx index 84bafad88dae..68f9bd4dcdaa 100644 --- a/sc/source/core/data/table4.cxx +++ b/sc/source/core/data/table4.cxx @@ -1423,8 +1423,12 @@ void ScTable::FillAutoSimple( } } - if (rInner == nIEnd) break; - if (bPositive) ++rInner; else --rInner; + if (rInner == nIEnd) + break; + if (bPositive) + ++rInner; + else + --rInner; // Progress in inner loop only for expensive cells, // and even then not individually for each one |