sdext/source/pdfimport/tree/style.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bc5bd022a9ea8128bd5e9ba02bda48332dccbbe4
Author:     Dr. David Alan Gilbert <d...@treblig.org>
AuthorDate: Sat Feb 10 01:00:18 2024 +0000
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Thu Feb 29 08:25:08 2024 +0100

    tdf#113050 sdext.pdfimport: In styles Specialise draw:fill-image
    
    Like stroke-dash, draw:fill-image needs the name setting in
    the draw:name attribute.
    
    Change-Id: Ib9c888765af8bfb0849f0f1ef15f9774808a1661
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163567
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/sdext/source/pdfimport/tree/style.cxx 
b/sdext/source/pdfimport/tree/style.cxx
index 3f1d20eb4244..b97b1d3e9cdf 100644
--- a/sdext/source/pdfimport/tree/style.cxx
+++ b/sdext/source/pdfimport/tree/style.cxx
@@ -190,7 +190,7 @@ void StyleContainer::impl_emitStyle( sal_Int32           
nStyleId,
     PropertyMap aProps( rStyle.Properties );
     if( !rStyle.IsSubStyle )
         aProps[ "style:name" ] = getStyleName( nStyleId );
-    if (rStyle.Name == "draw:stroke-dash")
+    if (rStyle.Name == "draw:stroke-dash" || rStyle.Name == "draw:fill-image")
         aProps[ "draw:name" ] = aProps[ "style:name" ];
     rContext.rEmitter.beginTag( rStyle.Name.getStr(), aProps );
 

Reply via email to