diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-06 23:30:42 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-06 23:33:22 -0500 |
commit | f0b22ccfdd94e557b4c3db5e0aea570341d8830c (patch) | |
tree | d01e876c4cc61051c76addd81bd798718179b9a5 /oox | |
parent | 3a5c3dc392f451f9718ef2fe2076d41bdd9b87ee (diff) |
bnc#792528: Play it safe for non-Excel documents.
Excel is not the only one that use charts. Let's also store the static
label value to maData in case it is used for non-Excel documents.
Change-Id: I1faed76e2ff396873039bccb3e1b7dcf27aba8c6
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/titlecontext.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/titlecontext.cxx b/oox/source/drawingml/chart/titlecontext.cxx index ea42cb863b0b..7067ef5d7443 100644 --- a/oox/source/drawingml/chart/titlecontext.cxx +++ b/oox/source/drawingml/chart/titlecontext.cxx @@ -69,10 +69,13 @@ void TextContext::onCharacters( const OUString& rChars ) { if( isCurrentElement( C_TOKEN( v ) ) ) { - // Static text is stored as a single string formula token. + // Static text is stored as a single string formula token for Excel document. OUStringBuffer aBuf; aBuf.append('"').append(rChars).append('"'); mrModel.mxDataSeq.create().maFormula = aBuf.makeStringAndClear(); + + // Also store it as a single element type for non-Excel document. + mrModel.mxDataSeq->maData[0] <<= rChars; } } |