diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-12-08 00:38:30 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-12-08 00:40:11 +0100 |
commit | 8248a32f499f4c4eaf6b7dbd7acead3370fdde54 (patch) | |
tree | 447a45a1704082dbc94a958e80c3189c3b38e18f /xmloff | |
parent | 86b9f03c3f754f7b753893ff2772f6b17bf3de3c (diff) |
this assert is wrong
In calc it seems that shapes can have no autostyle.
e.g. exporting fdo60469-74405.xlsx to ods
Change-Id: Ie0b2888094ba40a89748a070ca2d14f4078da619
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index 32ff3ad1fd6f..8ee117da5d49 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -794,7 +794,7 @@ OUString XMLTextParagraphExport::FindTextStyleAndHyperlink( } OUString sParent; // AutoStyles should not have parents! sName = GetAutoStylePool().Find( XML_STYLE_FAMILY_TEXT_TEXT, sParent, xPropStates ); - assert(!sName.isEmpty()); // AutoStyle could not be found + // assert(!sName.isEmpty()); // AutoStyle could not be found rbHasAutoStyle = sal_True; } |