diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-16 15:41:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 09:16:51 +0200 |
commit | d07b5fd742995d2d0ea645c70e51b8a27f7804fa (patch) | |
tree | e0406473a6c5cb7b978e5119774de667c2432999 /sc/source/ui/app | |
parent | 13df6667565421550a884b58af29b3ce4cc745c3 (diff) |
sal_Bool->bool
Change-Id: I56a9e51dabc94fa9f2965c0a070c62a18298435d
Diffstat (limited to 'sc/source/ui/app')
-rw-r--r-- | sc/source/ui/app/scmod.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx index 4ff50e6a87f2..5ea9b4bb1634 100644 --- a/sc/source/ui/app/scmod.cxx +++ b/sc/source/ui/app/scmod.cxx @@ -446,7 +446,7 @@ void ScModule::Execute( SfxRequest& rReq ) case FID_AUTOCOMPLETE: { ScAppOptions aNewOpts( GetAppOptions() ); - sal_Bool bNew = !aNewOpts.GetAutoComplete(); + bool bNew = !aNewOpts.GetAutoComplete(); aNewOpts.SetAutoComplete( bNew ); SetAppOptions( aNewOpts ); ScInputHandler::SetAutoComplete( bNew ); |