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

Gülşah Köse (via logerrit) logerrit at kemper.freedesktop.org
Fri Aug 30 22:22:55 UTC 2019


 sd/source/ui/func/fuolbull.cxx |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 438430904064e667b688275525b317fd7989af2e
Author:     Gülşah Köse <gulsah.kose at collabora.com>
AuthorDate: Sat Aug 31 00:24:40 2019 +0300
Commit:     Gülşah Köse <gulsah.kose at collabora.com>
CommitDate: Sat Aug 31 00:21:52 2019 +0200

    tdf#126656 Remove unnecessary items from itemset.
    
    Change-Id: I62fc660ea061fe9665e0166a08871ba0a592fc41
    Reviewed-on: https://gerrit.libreoffice.org/78332
    Tested-by: Jenkins
    Reviewed-by: Gülşah Köse <gulsah.kose at collabora.com>

diff --git a/sd/source/ui/func/fuolbull.cxx b/sd/source/ui/func/fuolbull.cxx
index 7c9b8657f0f2..cdd8fd33ece9 100644
--- a/sd/source/ui/func/fuolbull.cxx
+++ b/sd/source/ui/func/fuolbull.cxx
@@ -81,8 +81,14 @@ void FuBulletAndPosition::DoExecute( SfxRequest& rReq )
     SfxItemSet aEditAttr( mpDoc->GetPool() );
     mpView->GetAttributes( aEditAttr );
 
-    SfxItemSet aNewAttr( mpViewShell->GetPool(),
-                             svl::Items<EE_ITEMS_START, EE_ITEMS_END>{} );
+    static const sal_uInt16 aAttrMap[] =
+    {
+        EE_PARA_NUMBULLET,
+        EE_PARA_BULLET,
+        0
+    };
+
+    SfxItemSet aNewAttr( mpViewShell->GetPool(), aAttrMap );
     aNewAttr.Put( aEditAttr, false );
 
     auto pView = mpView;


More information about the Libreoffice-commits mailing list