diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-21 17:29:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-21 17:29:40 +0200 |
commit | 783419657cda0565716d363928c8cf5ac5035f8c (patch) | |
tree | 020ed01c4cdbcba17191cd7ef75e5aff25a379a6 /sc/source | |
parent | 8c423eeb49606087243fb6bbf31c0981c55dc773 (diff) |
loplugin:salbool: sal_Bool[] -> bool[]
Change-Id: I3c5bf7a53c9ae173f8fce885ecf022f092aa43a9
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/inc/tool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/inc/tool.h b/sc/source/filter/inc/tool.h index 1bf337fd811d..9c47e620b39b 100644 --- a/sc/source/filter/inc/tool.h +++ b/sc/source/filter/inc/tool.h @@ -92,7 +92,7 @@ class FormCache { private: FormIdent aIdents[ nSize_ ]; //gepufferte Formate - sal_Bool bValid[ nSize_ ]; + bool bValid[ nSize_ ]; FormIdent aCompareIdent; // zum Vergleichen sal_uInt8 nDefaultFormat; // Defaultformat der Datei SvNumberFormatter* pFormTable; // Value-Format-Table-Anker @@ -128,7 +128,7 @@ inline const SfxUInt32Item* FormCache::GetAttr( sal_uInt8 nFormat, sal_uInt8 nSt OSL_ENSURE( pAttr, "FormCache::GetAttr(): Nothing to save" ); aIdents[ nIndex ] = FormIdent( nFormat, nSt, *pAttr ); - bValid[ nIndex ] = sal_True; + bValid[ nIndex ] = true; pRet = pAttr; } |