summaryrefslogtreecommitdiff
path: root/sw/source/ui/docvw/edtwin.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-10-16 18:29:11 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-10-16 18:33:24 +0900
commitb1167e125076c8d088119585672105fd0bcbd6ee (patch)
tree84322e510a9b4fdbe96adbb69a73af6cab8717b5 /sw/source/ui/docvw/edtwin.cxx
parent20e7a9bda9ae9eae2af47402903e17f95ae3510a (diff)
sal_Bool to bool
Change-Id: I89050a1aa899b1a6cd49800f805af9611fd0a9a7
Diffstat (limited to 'sw/source/ui/docvw/edtwin.cxx')
-rw-r--r--sw/source/ui/docvw/edtwin.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx
index 77aadcf2d82d..3fce582be95f 100644
--- a/sw/source/ui/docvw/edtwin.cxx
+++ b/sw/source/ui/docvw/edtwin.cxx
@@ -316,7 +316,7 @@ struct QuickHelpData
}
// Fills internal structures with hopefully helpful information.
- void FillStrArr( SwWrtShell& rSh, const String& rWord, sal_Bool bIgnoreCurrentPos );
+ void FillStrArr( SwWrtShell& rSh, const String& rWord, bool bIgnoreCurrentPos );
void SortAndFilter();
};
@@ -5179,7 +5179,7 @@ void SwEditWin::Command( const CommandEvent& rCEvt )
rSh.GetPrevAutoCorrWord( *pACorr, sWord ) )
{
// ... request for auto completion help to be shown.
- ShowAutoTextCorrectQuickHelp(sWord, &rACfg, pACorr, sal_True);
+ ShowAutoTextCorrectQuickHelp(sWord, &rACfg, pACorr, true);
}
}
}
@@ -5700,7 +5700,7 @@ void QuickHelpData::Stop( SwWrtShell& rSh )
ClearCntnt();
}
-void QuickHelpData::FillStrArr( SwWrtShell& rSh, const String& rWord, sal_Bool bIgnoreCurrentPos )
+void QuickHelpData::FillStrArr( SwWrtShell& rSh, const String& rWord, bool bIgnoreCurrentPos )
{
enum Capitalization { CASE_LOWER, CASE_UPPER, CASE_SENTENCE, CASE_OTHER };
@@ -5827,7 +5827,7 @@ void QuickHelpData::SortAndFilter()
void SwEditWin::ShowAutoTextCorrectQuickHelp(
const String& rWord, SvxAutoCorrCfg* pACfg, SvxAutoCorrect* pACorr,
- sal_Bool bFromIME )
+ bool bFromIME )
{
SwWrtShell& rSh = rView.GetWrtShell();
pQuickHlpData->ClearCntnt();