[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - xmloff/source

Samuel Mehrbrodt Samuel.Mehrbrodt at cib.de
Sun Dec 3 09:27:29 UTC 2017


 xmloff/source/draw/shapeexport.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 95c28023f21e74c5a81fe3511b3d5be5c1f9106d
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date:   Thu Nov 30 12:47:40 2017 +0100

    Use isEmpty() instead of getLength()
    
    Change-Id: I2b67c3eebea09d8bebe045ca98341e3347b08fc7
    Reviewed-on: https://gerrit.libreoffice.org/45569
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
    (cherry picked from commit 3c7b177978f260b84f49032034502a12be7bdebc)
    Reviewed-on: https://gerrit.libreoffice.org/45676
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx
index 3f7f1d54ec18..e6752066a89e 100644
--- a/xmloff/source/draw/shapeexport.cxx
+++ b/xmloff/source/draw/shapeexport.cxx
@@ -2375,7 +2375,7 @@ void XMLShapeExport::ImpExportGraphicObjectShape(
             {
                 const OUString aStr = mrExport.AddEmbeddedGraphicObject(aReplacementUrl);
 
-                if(aStr.getLength())
+                if(!aStr.isEmpty())
                 {
                     mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, aStr);
                     mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );


More information about the Libreoffice-commits mailing list