diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 11:22:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:54 +0200 |
commit | b4d4ede795cbdbb813197fcfaac43e80af4ea566 (patch) | |
tree | 17bedd4ba0d0d0fd348a03dda2f72cf2c03339d6 /cui | |
parent | f5864e8ff4958268b50b15bc4c60c3d0fcfe20d9 (diff) |
svtools/svtabbax.hxx: sal_Bool->bool
Change-Id: I2441e15d2b32b897561cb404a925390299fea6d8
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/fontsubs.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/options/fontsubs.cxx b/cui/source/options/fontsubs.cxx index b0aef7426558..4bd0cd91258e 100644 --- a/cui/source/options/fontsubs.cxx +++ b/cui/source/options/fontsubs.cxx @@ -265,7 +265,7 @@ IMPL_LINK(SvxFontSubstTabPage, SelectHdl, Window*, pWin) pEntry = CreateEntry(sFont1, sFont2); m_pCheckLB->Insert(pEntry); } - m_pCheckLB->SelectAll(sal_False); + m_pCheckLB->SelectAll(false); m_pCheckLB->Select(pEntry); } else if (pWin == m_pDelete) @@ -304,7 +304,7 @@ IMPL_LINK(SvxFontSubstTabPage, SelectHdl, Window*, pWin) if (pEntry != m_pCheckLB->FirstSelected()) { - m_pCheckLB->SelectAll(sal_False); + m_pCheckLB->SelectAll(false); m_pCheckLB->Select(pEntry); } } @@ -383,7 +383,7 @@ void SvxFontSubstTabPage::CheckEnable() m_pCheckLB->DisableTable(); m_pCheckLB->SetTextColor(Color(COL_GRAY)); m_pCheckLB->Invalidate(); - m_pCheckLB->SelectAll(sal_False); + m_pCheckLB->SelectAll(false); } } } |