summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLExportIterator.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2012-01-06 14:22:10 -0200
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-01-07 07:37:38 -0200
commit49e11ffbe1cc04f2855b18acd501954d80901efa (patch)
tree20bfbbab637d13ea81e8c467b59189701fedf1e4 /sc/source/filter/xml/XMLExportIterator.cxx
parente4ce7225dd987f9b2f250f055d9688de79931444 (diff)
Fix for fdo43460 Part XXX getLength() to isEmpty()
Part XXX Modules sc
Diffstat (limited to 'sc/source/filter/xml/XMLExportIterator.cxx')
-rw-r--r--sc/source/filter/xml/XMLExportIterator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xml/XMLExportIterator.cxx b/sc/source/filter/xml/XMLExportIterator.cxx
index 44f8987b8d4d..298cda550eae 100644
--- a/sc/source/filter/xml/XMLExportIterator.cxx
+++ b/sc/source/filter/xml/XMLExportIterator.cxx
@@ -756,7 +756,7 @@ void ScMyNotEmptyCellsIterator::HasAnnotation(ScMyCell& aCell)
if (aCell.xAnnotation.is() && xSimpleText.is())
{
aCell.sAnnotationText = xSimpleText->getString();
- if (aCell.sAnnotationText.getLength())
+ if (!aCell.sAnnotationText.isEmpty())
aCell.bHasAnnotation = true;
}
aAnnotations.erase(aItr);