summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-05 14:13:39 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:18 +0200
commitc72ce293de07e2c8f13a3565fdd681773dc51144 (patch)
tree39017819e554037253d7065e330bbbc6fe480f79 /sw
parentc54b276beb30c36cee4d7cf2ccbd552c526777e7 (diff)
svx: sal_Bool->bool
Change-Id: I5a6a57f708a3a5ce1f065e341ae9da24e0c91499
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/dialog/ascfldlg.cxx2
-rw-r--r--sw/source/ui/index/cnttab.cxx2
-rw-r--r--sw/source/ui/misc/srtdlg.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/dialog/ascfldlg.cxx b/sw/source/ui/dialog/ascfldlg.cxx
index 10615365e400..1b09a0b73040 100644
--- a/sw/source/ui/dialog/ascfldlg.cxx
+++ b/sw/source/ui/dialog/ascfldlg.cxx
@@ -162,7 +162,7 @@ SwAsciiFilterDlg::SwAsciiFilterDlg( Window* pParent, SwDocShell& rDocSh,
}
}
- m_pLanguageLB->SetLanguageList( LANG_LIST_ALL, sal_True, sal_False );
+ m_pLanguageLB->SetLanguageList( LANG_LIST_ALL, true, false );
m_pLanguageLB->SelectLanguage( aOpt.GetLanguage() );
}
diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx
index 3dda87016be2..28743137aa99 100644
--- a/sw/source/ui/index/cnttab.cxx
+++ b/sw/source/ui/index/cnttab.cxx
@@ -865,7 +865,7 @@ SwTOXSelectTabPage::SwTOXSelectTabPage(Window* pParent, const SfxItemSet& rAttrS
pIndexEntryWrapper = new IndexEntrySupplierWrapper();
m_pLanguageLB->SetLanguageList( LANG_LIST_ALL | LANG_LIST_ONLY_KNOWN,
- sal_False, sal_False, sal_False );
+ false, false, false );
sAddStyleContent = m_pAddStylesCB->GetText();
diff --git a/sw/source/ui/misc/srtdlg.cxx b/sw/source/ui/misc/srtdlg.cxx
index 3eb2e52cb831..c28cf09619c2 100644
--- a/sw/source/ui/misc/srtdlg.cxx
+++ b/sw/source/ui/misc/srtdlg.cxx
@@ -204,7 +204,7 @@ SwSortDlg::SwSortDlg(Window* pParent, SwWrtShell &rShell)
if( LANGUAGE_NONE == nLang || LANGUAGE_DONTKNOW == nLang )
nLang = (sal_uInt16)GetAppLanguage();
- m_pLangLB->SetLanguageList( LANG_LIST_ALL | LANG_LIST_ONLY_KNOWN, sal_True, sal_False);
+ m_pLangLB->SetLanguageList( LANG_LIST_ALL | LANG_LIST_ONLY_KNOWN, true, false);
m_pLangLB->SelectLanguage( nLang );
LanguageHdl( 0 );