diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-04-04 20:59:30 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-04-05 16:15:26 -0400 |
commit | 323149157c31ec83137d047db8956dbfa0ffe981 (patch) | |
tree | 1235a6abf2e74644adda6804d35edf4512046131 /sc | |
parent | 6b87aa0111bc7207caacae78985bbb4d1bdf1b88 (diff) |
sal_Bool to bool.
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/output.hxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sc/source/ui/inc/output.hxx b/sc/source/ui/inc/output.hxx index 5a205c5ca0d9..84ffb96ee07a 100644 --- a/sc/source/ui/inc/output.hxx +++ b/sc/source/ui/inc/output.hxx @@ -122,14 +122,14 @@ private: SCCOL nEditCol; SCROW nEditRow; - sal_Bool bMetaFile; // Ausgabe auf Metafile (nicht in Pixeln!) - sal_Bool bSingleGrid; // beim Gitter bChanged auswerten + bool bMetaFile; // Ausgabe auf Metafile (nicht in Pixeln!) + bool bSingleGrid; // beim Gitter bChanged auswerten - sal_Bool bPagebreakMode; // Seitenumbruch-Vorschau - sal_Bool bSolidBackground; // weiss statt transparent + bool bPagebreakMode; // Seitenumbruch-Vorschau + bool bSolidBackground; // weiss statt transparent - sal_Bool bUseStyleColor; - sal_Bool bForceAutoColor; + bool bUseStyleColor; + bool bForceAutoColor; sal_Bool bSyntaxMode; // Syntax-Highlighting Color* pValueColor; @@ -138,18 +138,18 @@ private: Color aGridColor; - sal_Bool bShowNullValues; - sal_Bool bShowFormulas; - sal_Bool bShowSpellErrors; // Spell-Errors in EditObjekten anzeigen - sal_Bool bMarkClipped; + bool bShowNullValues; + bool bShowFormulas; + bool bShowSpellErrors; // Spell-Errors in EditObjekten anzeigen + bool bMarkClipped; - sal_Bool bSnapPixel; + bool bSnapPixel; - sal_Bool bAnyRotated; // intern - sal_Bool bAnyClipped; // intern - sal_Bool bTabProtected; + bool bAnyRotated; // intern + bool bAnyClipped; // intern + bool bTabProtected; sal_uInt8 nTabTextDirection; // EEHorizontalTextDirection values - sal_Bool bLayoutRTL; + bool bLayoutRTL; // #i74769# use SdrPaintWindow direct, remember it during BeginDrawLayers/EndDrawLayers SdrPaintWindow* mpTargetPaintWindow; |