From c2e2fbe6601ef14122371c380d91a48425a2b669 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Fri, 2 Aug 2013 23:47:39 -0400 Subject: Fix subtotal functions in the status bar. That is clearly a mistake. Change-Id: I8f631f2ff63449a260091d7990f24ebaeea9c5f2 --- sc/source/core/data/column2.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') 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) -- cgit