[Libreoffice-commits] core.git: svx/source

Szymon Kłos (via logerrit) logerrit at kemper.freedesktop.org
Mon Nov 11 19:08:48 UTC 2019


 svx/source/svdraw/svdedtv1.cxx |   13 +++++++++++++
 1 file changed, 13 insertions(+)

New commits:
commit a3d08f4f8c3c958a33ce05398127c35dad81dc4b
Author:     Szymon Kłos <szymon.klos at collabora.com>
AuthorDate: Mon Nov 11 16:44:46 2019 +0100
Commit:     Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Mon Nov 11 20:07:30 2019 +0100

    jsdialogs: send .uno:LineWidth updates
    
    Change-Id: I83856625d17910e5b9165c7a2ddae8b219650c8c
    Reviewed-on: https://gerrit.libreoffice.org/82455
    Tested-by: Jenkins
    Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>

diff --git a/svx/source/svdraw/svdedtv1.cxx b/svx/source/svdraw/svdedtv1.cxx
index 8c83304015dc..6a143c2f0c40 100644
--- a/svx/source/svdraw/svdedtv1.cxx
+++ b/svx/source/svdraw/svdedtv1.cxx
@@ -962,6 +962,19 @@ void SdrEditView::MergeAttrFromMarked(SfxItemSet& rAttr, bool bOnlyHardAttr) con
                         }
                         break;
                     }
+
+                    case XATTR_LINEWIDTH:
+                    {
+                        const SfxPoolItem* pItem = rSet.GetItem(XATTR_LINEWIDTH);
+                        if (pItem)
+                        {
+                            sal_uInt32 nWidth = static_cast<const XLineWidthItem*>(pItem)->GetValue();
+                            sPayload = OUString::number(nWidth);
+
+                            sPayload = ".uno:LineWidth=" + sPayload;
+                        }
+                        break;
+                    }
                 }
 
                 if (!sPayload.isEmpty())


More information about the Libreoffice-commits mailing list