[Libreoffice-commits] .: Branch 'libreoffice-3-6' - sc/source
Markus Mohrhard
mmohrhard at kemper.freedesktop.org
Fri Jun 29 18:19:19 PDT 2012
sc/source/filter/xml/xmlcondformat.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 66018b9685dd7337daae9bb62ffeb43cd4161caf
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Sat Jun 30 03:01:22 2012 +0200
the end of the formula is the closing bracket, fdo#51507
Change-Id: I2cc6505571ff62d44443c161317b61033be0d7ec
diff --git a/sc/source/filter/xml/xmlcondformat.cxx b/sc/source/filter/xml/xmlcondformat.cxx
index a8fc8bb..ed9bc49 100644
--- a/sc/source/filter/xml/xmlcondformat.cxx
+++ b/sc/source/filter/xml/xmlcondformat.cxx
@@ -363,7 +363,7 @@ void GetConditionData(const rtl::OUString& rValue, ScConditionMode& eMode, rtl::
const sal_Unicode* pStr = rValue.getStr();
const sal_Unicode* pStart = pStr + 11;
const sal_Unicode* pEnd = pStr + rValue.getLength();
- rExpr1 = ScXMLConditionHelper::getExpression( pStart, pEnd, ',');
+ rExpr1 = ScXMLConditionHelper::getExpression( pStart, pEnd, ')');
eMode = SC_COND_DIRECT;
}
else
More information about the Libreoffice-commits
mailing list