[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - sd/source
Gülşah Köse (via logerrit)
logerrit at kemper.freedesktop.org
Tue Sep 3 09:13:49 UTC 2019
sd/source/ui/func/fuolbull.cxx | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
New commits:
commit 8c8b29c3f42686bf14ed84582dd02784867527f5
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: Tue Sep 3 11:13:05 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>
(cherry picked from commit 438430904064e667b688275525b317fd7989af2e)
Reviewed-on: https://gerrit.libreoffice.org/78414
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