[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - sc/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Mon Feb 25 23:25:30 PST 2013
sc/source/core/data/colorscale.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 0c771fda26a03b3928e7962265658affc9fb9eb1
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Thu Feb 14 15:26:27 2013 +0100
use >= as mentioned in the UI, fdo#60798
Change-Id: Iac6737e98eb0961de22036f42634ebad7d42dfcc
Reviewed-on: https://gerrit.libreoffice.org/2409
Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
Tested-by: Fridrich Strba <fridrich at documentfoundation.org>
diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx
index 3fe033a..c8e4f3e 100644
--- a/sc/source/core/data/colorscale.cxx
+++ b/sc/source/core/data/colorscale.cxx
@@ -898,13 +898,13 @@ ScIconSetInfo* ScIconSetFormat::GetIconSetInfo(const ScAddress& rAddr) const
double nValMax = CalcValue(nMin, nMax, itr);
++itr;
- while(itr != end() && nVal > nValMax)
+ while(itr != end() && nVal >= nValMax)
{
++nIndex;
nValMax = CalcValue(nMin, nMax, itr);
++itr;
}
- if(nVal > nValMax)
+ if(nVal >= nValMax)
++nIndex;
pInfo->nIconIndex = nIndex;
More information about the Libreoffice-commits
mailing list