diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 09:48:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 10:09:29 +0200 |
commit | c2e38d4dc455e47cee72b7b78e4f2dc0cf0e624c (patch) | |
tree | 433e1701f80a49375e0d8c818db5b5286a7f48c1 | |
parent | 3aeb1f80527dc0adf4ed28f8b9bd67d970e65649 (diff) |
cid#1371331 Misused comma operator
Change-Id: I729c90f7873a7735eb59805e336f4dd337dea69b
-rw-r--r-- | svx/source/sidebar/nbdtmg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; |