summaryrefslogtreecommitdiff
path: root/sw/source/ui/misc/num.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-21 08:57:16 +0200
committerNoel Grandin <noel@peralex.com>2015-08-21 10:19:43 +0200
commit681172d27bc4d68429c61d68275612a45564eee6 (patch)
treee69cadb23556dd3aa380cae1597a021db08b39a0 /sw/source/ui/misc/num.cxx
parent8d7c62e7d2a7d93b63f6603c3921ebbd4c96d4b7 (diff)
loplugin: defaultparams
Change-Id: I13ad6260ef6a8858765231610d5cb326b4a9ce35
Diffstat (limited to 'sw/source/ui/misc/num.cxx')
-rw-r--r--sw/source/ui/misc/num.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx
index 98792e2213ec..c9eabce7157c 100644
--- a/sw/source/ui/misc/num.cxx
+++ b/sw/source/ui/misc/num.cxx
@@ -413,7 +413,7 @@ void SwNumPositionTabPage::ActivatePage(const SfxItemSet& )
for(sal_uInt16 i = 0; i < MAXLEVEL; i++)
{
if(nActNumLvl & nMask)
- m_pLevelLB->SelectEntryPos( i, true);
+ m_pLevelLB->SelectEntryPos( i );
nMask <<= 1 ;
}
m_pLevelLB->SetUpdateMode(true);
@@ -466,13 +466,13 @@ void SwNumPositionTabPage::Reset( const SfxItemSet* rSet )
m_pLevelLB->SetNoSelection();
if(nActNumLvl == USHRT_MAX)
{
- m_pLevelLB->SelectEntryPos( MAXLEVEL, true);
+ m_pLevelLB->SelectEntryPos( MAXLEVEL );
}
else
for(sal_uInt16 i = 0; i < MAXLEVEL; i++)
{
if(nActNumLvl & nMask)
- m_pLevelLB->SelectEntryPos( i, true);
+ m_pLevelLB->SelectEntryPos( i );
nMask <<= 1;
}
m_pLevelLB->SetUpdateMode(true);