[Libreoffice-commits] core.git: sc/source

Kohei Yoshida kohei.yoshida at gmail.com
Fri Aug 2 20:48:02 PDT 2013


 sc/source/core/data/column2.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c2e2fbe6601ef14122371c380d91a48425a2b669
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Fri Aug 2 23:47:39 2013 -0400

    Fix subtotal functions in the status bar.
    
    That is clearly a mistake.
    
    Change-Id: I8f631f2ff63449a260091d7990f24ebaeea9c5f2

diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 6a52d8c..b22b477 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)


More information about the Libreoffice-commits mailing list