diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-25 10:43:17 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-25 10:44:33 +0900 |
commit | 17deff0c9a066ab4208747062577ab700dac60ef (patch) | |
tree | 53ce2d59ec2d4f65a42fe1274505e58593255ee2 /sw/source/ui/fldui/inpdlg.cxx | |
parent | bc84545cb2c58f1f267ed2efb770bb5624ee7c70 (diff) |
sal_Bool to bool
Change-Id: I3a18222fe21c05edc87e480086be7e4faef3219c
Diffstat (limited to 'sw/source/ui/fldui/inpdlg.cxx')
-rw-r--r-- | sw/source/ui/fldui/inpdlg.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/fldui/inpdlg.cxx b/sw/source/ui/fldui/inpdlg.cxx index a2fb248a36d7..42fbb50bf59a 100644 --- a/sw/source/ui/fldui/inpdlg.cxx +++ b/sw/source/ui/fldui/inpdlg.cxx @@ -144,7 +144,7 @@ void SwFldInputDlg::Apply() rtl::OUString aTmp(comphelper::string::remove(aEditED.GetText(), '\r')); rSh.StartAllAction(); - sal_Bool bModified = sal_False; + bool bModified = false; if(pInpFld) { if(pUsrType) @@ -153,21 +153,21 @@ void SwFldInputDlg::Apply() { pUsrType->SetContent(aTmp); pUsrType->UpdateFlds(); - bModified = sal_True; + bModified = true; } } else if( !aTmp.equals(pInpFld->GetPar1()) ) { pInpFld->SetPar1(aTmp); rSh.SwEditShell::UpdateFlds(*pInpFld); - bModified = sal_True; + bModified = true; } } else if( !aTmp.equals(pSetFld->GetPar2()) ) { pSetFld->SetPar2(aTmp); rSh.SwEditShell::UpdateFlds(*pSetFld); - bModified = sal_True; + bModified = true; } if( bModified ) |