diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2013-08-16 20:45:53 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2013-08-16 20:46:52 +0300 |
commit | 682dff097be62a325945c5edd7b81f076a8ef106 (patch) | |
tree | cb20786ce67942aeff71d50795de243289d96391 /cui/source/options/optlingu.cxx | |
parent | da5eb782cb28f806a8ca08ef8ebf21772363307d (diff) |
WaE: C4805: unsafe mix of type 'bool' and type 'sal_Bool' in operation
Change-Id: Icdc6189be1c8126f83e8585513709d44dfa6ec35
Diffstat (limited to 'cui/source/options/optlingu.cxx')
-rw-r--r-- | cui/source/options/optlingu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx index f0ca44917812..3a497f526d96 100644 --- a/cui/source/options/optlingu.cxx +++ b/cui/source/options/optlingu.cxx @@ -1334,7 +1334,7 @@ sal_Bool SvxLinguTabPage::FillItemSet( SfxItemSet& rCoreSet ) // automatic spell checking - sal_Bool bNewAutoCheck = aLinguOptionsCLB.IsChecked( (sal_uInt16) EID_SPELL_AUTO ); + bool bNewAutoCheck = aLinguOptionsCLB.IsChecked( (sal_uInt16) EID_SPELL_AUTO ); const SfxPoolItem* pOld = GetOldItem( rCoreSet, SID_AUTOSPELL_CHECK ); if ( !pOld || ( (SfxBoolItem*)pOld )->GetValue() != bNewAutoCheck ) { |