From c2e38d4dc455e47cee72b7b78e4f2dc0cf0e624c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 25 Aug 2016 09:48:21 +0200 Subject: [PATCH] cid#1371331 Misused comma operator Change-Id: I729c90f7873a7735eb59805e336f4dd337dea69b --- svx/source/sidebar/nbdtmg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svx/source/sidebar/nbdtmg.cxx b/svx/source/sidebar/nbdtmg.cxx index a095aff25241..217febee5ab8 100644 --- a/svx/source/sidebar/nbdtmg.cxx +++ b/svx/source/sidebar/nbdtmg.cxx @@ -255,7 +255,7 @@ BulletsTypeMgr::BulletsTypeMgr(const BulletsTypeMgr& aTypeMgr): { for (sal_uInt16 i=0; i < DEFAULT_BULLET_TYPES; ++i) { - const BulletsSettings_Impl* pSrcBullet = aTypeMgr.pActualBullets[i]; + const BulletsSettings_Impl* pSrcBullet = BulletsTypeMgr::pActualBullets[i]; BulletsSettings_Impl* pTargetBullet = pActualBullets[i]; pTargetBullet->bIsCustomized = pSrcBullet->bIsCustomized; pTargetBullet->cBulletChar = pSrcBullet->cBulletChar;