summaryrefslogtreecommitdiff
path: root/sc/source/core/data
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-02 23:47:39 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-02 23:48:35 -0400
commitc2e2fbe6601ef14122371c380d91a48425a2b669 (patch)
tree1eaaec99fc6d4cae45b87450cf37257c864dca49 /sc/source/core/data
parent33ed80c271d08b1756d2b60c3d62f474dff5f0c8 (diff)
Fix subtotal functions in the status bar.
That is clearly a mistake. Change-Id: I8f631f2ff63449a260091d7990f24ebaeea9c5f2
Diffstat (limited to 'sc/source/core/data')
-rw-r--r--sc/source/core/data/column2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 6a52d8cc8447..b22b477c8e29 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -2665,7 +2665,7 @@ class UpdateSubTotalHandler
void update(double fVal, bool bVal)
{
- if (!mrData.bError)
+ if (mrData.bError)
return;
switch (mrData.eFunc)