summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/tool.h
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/tool.h')
-rw-r--r--sc/source/filter/inc/tool.h4
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;
}