diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-09-20 16:20:35 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-09-20 16:28:18 +0300 |
commit | 59019c68943e531e43ec8873e5f8d4f8c91e64b2 (patch) | |
tree | 1ebabc5bbff2312eacb23591bf3f2ee0ac4b9853 /xmloff | |
parent | cc3e899fabe73629b1670bc38386deb649ae81e5 (diff) |
WaE: rewrite as call of rtl::OUString::isEmpty
Change-Id: I0dc1a59eaeefd1a55640b94a00142b0fe6696523
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/ximpshap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx index 8a067f697553..df01ab67436f 100644 --- a/xmloff/source/draw/ximpshap.cxx +++ b/xmloff/source/draw/ximpshap.cxx @@ -1760,7 +1760,7 @@ void SdXMLTextBoxShapeContext::StartElement(const uno::Reference< xml::sax::XAtt } } - if(maChainNextName != "") + if(!maChainNextName.isEmpty()) { uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY); if(xPropSet.is()) |