cid#1371331 Misused comma operator

Change-Id: I729c90f7873a7735eb59805e336f4dd337dea69b
This commit is contained in:
Noel Grandin
2016-08-25 09:48:21 +02:00
parent 3aeb1f8052
commit c2e38d4dc4

View File

@@ -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;