summaryrefslogtreecommitdiff
path: root/xmloff/source/core/xmluconv.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/core/xmluconv.cxx')
-rw-r--r--xmloff/source/core/xmluconv.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx
index 3ec1a49febeb..1109eb5be0ea 100644
--- a/xmloff/source/core/xmluconv.cxx
+++ b/xmloff/source/core/xmluconv.cxx
@@ -543,7 +543,7 @@ sal_Bool SvXMLTokenEnumerator::getNextToken( OUString& rToken )
bool lcl_getPositions(const OUString& _sValue,OUString& _rContentX,OUString& _rContentY,OUString& _rContentZ)
{
- if(!_sValue.getLength() || _sValue[0] != '(')
+ if(_sValue.isEmpty() || _sValue[0] != '(')
return false;
sal_Int32 nPos(1L);