summaryrefslogtreecommitdiff
path: root/sw/source/ui/config/optpage.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /sw/source/ui/config/optpage.cxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'sw/source/ui/config/optpage.cxx')
-rw-r--r--sw/source/ui/config/optpage.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/ui/config/optpage.cxx b/sw/source/ui/config/optpage.cxx
index 994a2c9b3d34..6ab0257bd13a 100644
--- a/sw/source/ui/config/optpage.cxx
+++ b/sw/source/ui/config/optpage.cxx
@@ -457,7 +457,7 @@ IMPL_LINK_NOARG_INLINE_START(SwAddPrinterTabPage, AutoClickHdl)
bAttrModified = sal_True;
bool bIsProspect = m_pProspectCB->IsChecked();
if (!bIsProspect)
- m_pProspectCB_RTL->Check( sal_False );
+ m_pProspectCB_RTL->Check( false );
m_pProspectCB_RTL->Enable( bIsProspect );
m_pNoRB->Enable( !bIsProspect );
m_pOnlyRB->Enable( !bIsProspect );
@@ -1886,10 +1886,10 @@ void SwRedlineOptionsTabPage::Reset( const SfxItemSet& )
InitFontStyle(*pChangedPreviewWN);
// initialise colour list box
- pInsertColorLB->SetUpdateMode(sal_False);
- pDeletedColorLB->SetUpdateMode(sal_False);
- pChangedColorLB->SetUpdateMode(sal_False);
- pMarkColorLB->SetUpdateMode(sal_False);
+ pInsertColorLB->SetUpdateMode(false);
+ pDeletedColorLB->SetUpdateMode(false);
+ pChangedColorLB->SetUpdateMode(false);
+ pMarkColorLB->SetUpdateMode(false);
pInsertColorLB->InsertEntry(sNone);
pDeletedColorLB->InsertEntry(sNone);
pChangedColorLB->InsertEntry(sNone);
@@ -1911,10 +1911,10 @@ void SwRedlineOptionsTabPage::Reset( const SfxItemSet& )
pChangedColorLB->InsertEntry( aColor, sName );
pMarkColorLB->InsertEntry( aColor, sName );
}
- pInsertColorLB->SetUpdateMode( sal_True );
- pDeletedColorLB->SetUpdateMode( sal_True );
- pChangedColorLB->SetUpdateMode( sal_True );
- pMarkColorLB->SetUpdateMode( sal_True );
+ pInsertColorLB->SetUpdateMode( true );
+ pDeletedColorLB->SetUpdateMode( true );
+ pChangedColorLB->SetUpdateMode( true );
+ pMarkColorLB->SetUpdateMode( true );
ColorData nColor = rInsertAttr.nColor;