summaryrefslogtreecommitdiff
path: root/include/editeng/adjustitem.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-19 13:58:15 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:19 +0200
commit8be2cbc856fb5ba61203872d8f01ed8162aa4256 (patch)
treea4d45738a647fc7325c1a5830c1fc1291591d808 /include/editeng/adjustitem.hxx
parent4692d28e9028b287689e60e7c689f31fcf63641b (diff)
sal_Bool->bool
Change-Id: I8623ebe2d46cb897d4dd0c0ec9c136d96af0186c
Diffstat (limited to 'include/editeng/adjustitem.hxx')
-rw-r--r--include/editeng/adjustitem.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/editeng/adjustitem.hxx b/include/editeng/adjustitem.hxx
index c6ca55c0ee2f..77ea32ed6c32 100644
--- a/include/editeng/adjustitem.hxx
+++ b/include/editeng/adjustitem.hxx
@@ -36,15 +36,15 @@ This item describes the row orientation.
class EDITENG_DLLPUBLIC SvxAdjustItem : public SfxEnumItemInterface
{
- sal_Bool bLeft : 1;
- sal_Bool bRight : 1;
- sal_Bool bCenter : 1;
- sal_Bool bBlock : 1;
+ bool bLeft : 1;
+ bool bRight : 1;
+ bool bCenter : 1;
+ bool bBlock : 1;
// only activ when bBlock
- sal_Bool bOneBlock : 1;
- sal_Bool bLastCenter : 1;
- sal_Bool bLastBlock : 1;
+ bool bOneBlock : 1;
+ bool bLastCenter : 1;
+ bool bLastBlock : 1;
friend SvStream& WriteSvxAdjustItem( SvStream&, SvxAdjustItem& ); //$ ostream
public: