summaryrefslogtreecommitdiff
path: root/svx/source/sidebar
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-25 09:48:21 +0200
committerNoel Grandin <noel@peralex.com>2016-08-25 10:09:29 +0200
commitc2e38d4dc455e47cee72b7b78e4f2dc0cf0e624c (patch)
tree433e1701f80a49375e0d8c818db5b5286a7f48c1 /svx/source/sidebar
parent3aeb1f80527dc0adf4ed28f8b9bd67d970e65649 (diff)
cid#1371331 Misused comma operator
Change-Id: I729c90f7873a7735eb59805e336f4dd337dea69b
Diffstat (limited to 'svx/source/sidebar')
-rw-r--r--svx/source/sidebar/nbdtmg.cxx2
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;