summaryrefslogtreecommitdiff
path: root/xmloff/source/forms/elementimport.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 13:43:19 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 13:43:19 +0000
commitaa900c502dafcb310663e1075d51b4bd6722a371 (patch)
treee6f936e67f249f2b2a7bc7491c00c82040a10524 /xmloff/source/forms/elementimport.cxx
parent58176a2c450204a2e375764448949e9825694bb0 (diff)
INTEGRATION: CWS sb59 (1.50.14); FILE MERGED
2006/08/18 18:46:22 sb 1.50.14.2: RESYNC: (1.50-1.51); FILE MERGED 2006/08/09 12:53:52 sb 1.50.14.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'xmloff/source/forms/elementimport.cxx')
-rw-r--r--xmloff/source/forms/elementimport.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx
index 45a5a1eac2..6a9dd78659 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: elementimport.cxx,v $
*
- * $Revision: 1.52 $
+ * $Revision: 1.53 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 10:34:03 $
+ * last change: $Author: obo $ $Date: 2006-10-12 14:43:19 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1923,7 +1923,6 @@ namespace xmloff
// that's the worst case. If the string contains the separator character _quoted_, we reserved to much ...
- SvXMLUnitConverter& rConverter = GetImport().GetMM100UnitConverter();
sal_Int32 nElementStart = 0;
sal_Int32 nNextSep = 0;
sal_Int32 nElementLength;
@@ -1931,7 +1930,8 @@ namespace xmloff
do
{
// extract the current element
- nNextSep = rConverter.indexOfComma(_rValue, nElementStart);
+ nNextSep = SvXMLUnitConverter::indexOfComma(
+ _rValue, nElementStart);
if (-1 == nNextSep)
nNextSep = nLength;
sElement = _rValue.copy(nElementStart, nNextSep - nElementStart);