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

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Fri Jul 16 07:25:00 UTC 2021


 sd/source/ui/func/fuolbull.cxx |    9 +--------
 sd/source/ui/view/drviews3.cxx |    9 +++------
 2 files changed, 4 insertions(+), 14 deletions(-)

New commits:
commit e7b632bc727413f399a4d0cbc2e92d90b04a3bf7
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Thu Jul 15 21:49:50 2021 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri Jul 16 09:24:25 2021 +0200

    use WhichRangesContainer in sd
    
    Change-Id: I528905c14f40bee85689f24ebaef8e8fde1b107b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118999
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sd/source/ui/func/fuolbull.cxx b/sd/source/ui/func/fuolbull.cxx
index 5d1cf1dec398..4efb6d196263 100644
--- a/sd/source/ui/func/fuolbull.cxx
+++ b/sd/source/ui/func/fuolbull.cxx
@@ -79,14 +79,7 @@ void FuBulletAndPosition::DoExecute( SfxRequest& rReq )
     SfxItemSet aEditAttr( mpDoc->GetPool() );
     mpView->GetAttributes( aEditAttr );
 
-    static const sal_uInt16 aAttrMap[] =
-    {
-        EE_PARA_NUMBULLET,
-        EE_PARA_BULLET,
-        0
-    };
-
-    SfxItemSet aNewAttr( mpViewShell->GetPool(), aAttrMap );
+    SfxItemSet aNewAttr( mpViewShell->GetPool(), svl::Items<EE_PARA_NUMBULLET, EE_PARA_BULLET>{} );
     aNewAttr.Put( aEditAttr, false );
 
     auto pView = mpView;
diff --git a/sd/source/ui/view/drviews3.cxx b/sd/source/ui/view/drviews3.cxx
index 08868977b473..6160df65004a 100644
--- a/sd/source/ui/view/drviews3.cxx
+++ b/sd/source/ui/view/drviews3.cxx
@@ -817,13 +817,10 @@ void  DrawViewShell::ExecRuler(SfxRequest& rReq)
                 const SvxLRSpaceItem& rItem = static_cast<const SvxLRSpaceItem&>(
                             pArgs->Get( nId ));
 
-                static const sal_uInt16 aWhichTable[]=
-                {
-                    EE_PARA_OUTLLEVEL, EE_PARA_OUTLLEVEL,
-                    EE_PARA_LRSPACE, EE_PARA_LRSPACE,
+                static const auto aWhichTable = svl::Items<
                     EE_PARA_NUMBULLET, EE_PARA_NUMBULLET,
-                    0, 0
-                };
+                    EE_PARA_OUTLLEVEL, EE_PARA_OUTLLEVEL,
+                    EE_PARA_LRSPACE, EE_PARA_LRSPACE>{};
 
                 SfxItemSet aEditAttr( GetDoc()->GetPool(),
                                       aWhichTable );


More information about the Libreoffice-commits mailing list