summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-02-14 15:26:27 +0100
committerPetr Mladek <pmladek@suse.cz>2013-02-26 11:33:25 +0000
commit5cb54fa422f7c29383e0eb429e568856015352db (patch)
tree97872d54dbc414209077b51260c3678a9a9fd4dc
parent7da28b1cc0953e8d67248235f0eeac2abf140fe3 (diff)
use >= as mentioned in the UI, fdo#60798
Change-Id: Iac6737e98eb0961de22036f42634ebad7d42dfcc Reviewed-on: https://gerrit.libreoffice.org/2409 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org> Reviewed-on: https://gerrit.libreoffice.org/2419 Reviewed-by: Michael Meeks <michael.meeks@suse.com> Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
-rw-r--r--sc/source/core/data/colorscale.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx
index 3fe033a9d393..c8e4f3e17b55 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;