diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-19 14:13:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-21 12:19:20 +0200 |
commit | 87612bfee4ca5165a358d73e891e440bf988b725 (patch) | |
tree | b69b1d9a295450b4c1e0228d52b46949a58dc99d /sw | |
parent | 8be2cbc856fb5ba61203872d8f01ed8162aa4256 (diff) |
sal_Bool->bool
Change-Id: If8d90d507e29caaf8ceb41deb9cb5eb54476773e
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/shells/textsh1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/shells/textsh1.cxx b/sw/source/ui/shells/textsh1.cxx index 177bd892aa92..59df37ecd9ab 100644 --- a/sw/source/ui/shells/textsh1.cxx +++ b/sw/source/ui/shells/textsh1.cxx @@ -667,7 +667,7 @@ void SwTextShell::Execute(SfxRequest &rReq) case FN_AUTOFORMAT_AUTO: { SvxAutoCorrCfg& rACfg = SvxAutoCorrCfg::Get(); - sal_Bool bSet = pItem ? ((const SfxBoolItem*)pItem)->GetValue() : !rACfg.IsAutoFmtByInput(); + bool bSet = pItem ? ((const SfxBoolItem*)pItem)->GetValue() : !rACfg.IsAutoFmtByInput(); if( bSet != rACfg.IsAutoFmtByInput() ) { rACfg.SetAutoFmtByInput( bSet ); |