summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMuthu Subramanian <sumuthu@suse.com>2013-03-28 20:12:54 +0530
committerMuthu Subramanian <sumuthu@suse.com>2013-04-26 16:06:26 +0530
commit1ffe3891866ace5ce62ef92224f4a60b5906c0ac (patch)
treebb33c6ce597e7946d707ce365ecf988abfd1fcca /oox
parenta9ff36b533bc822a82253b888e488b2391da7a8d (diff)
n#810508: Fixes import of Scatternet and Bubble charts.
xVal needs to be imported as double and not as strings.
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/chart/datasourcecontext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/chart/datasourcecontext.cxx b/oox/source/drawingml/chart/datasourcecontext.cxx
index 0620b6aef8b8..f4f6b95e0049 100644
--- a/oox/source/drawingml/chart/datasourcecontext.cxx
+++ b/oox/source/drawingml/chart/datasourcecontext.cxx
@@ -96,10 +96,10 @@ void DoubleSequenceContext::onCharacters( const OUString& rChars )
{
/* Import categories as String even though it could
* be values.
+ * n#810508: xVal needs to be imported as double
* TODO: NumberFormat conversion, remove the check then.
*/
- if( isParentElement( C_TOKEN( cat ), 4 ) ||
- isParentElement( C_TOKEN( xVal ), 4 ) )
+ if( isParentElement( C_TOKEN( cat ), 4 ) )
mrModel.maData[ mnPtIndex ] <<= rChars;
else
mrModel.maData[ mnPtIndex ] <<= rChars.toDouble();