[Libreoffice-commits] .: Branch 'libreoffice-3-6' - sc/source

Kohei Yoshida kohei at kemper.freedesktop.org
Mon Aug 13 05:47:16 PDT 2012


 sc/source/core/data/colorscale.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1db8f09103403851baa193527eadd3a990be55c3
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Sun Aug 12 01:15:17 2012 +0200

    correctly calculate percentile for upper data bar limit
    
    Change-Id: I72eab0d6e34a8383368f7f3768e2429f1e65557d
    Signed-off-by: Kohei Yoshida <kohei.yoshida at gmail.com>

diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx
index 38f061a..fcda332 100644
--- a/sc/source/core/data/colorscale.cxx
+++ b/sc/source/core/data/colorscale.cxx
@@ -725,9 +725,9 @@ double ScDataBarFormat::getMax(double nMin, double nMax) const
         return nMax;
     else if(mpFormatData->mpUpperLimit->GetPercent())
         return nMin + (nMax-nMin)/100*mpFormatData->mpUpperLimit->GetValue();
-    else if(mpFormatData->mpLowerLimit->GetPercentile())
+    else if(mpFormatData->mpUpperLimit->GetPercentile())
     {
-        double fPercentile = mpFormatData->mpLowerLimit->GetValue()/100.0;
+        double fPercentile = mpFormatData->mpUpperLimit->GetValue()/100.0;
         std::vector<double> aValues;
         getValues(aValues);
         return GetPercentile(aValues, fPercentile);


More information about the Libreoffice-commits mailing list