From 8be2cbc856fb5ba61203872d8f01ed8162aa4256 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 19 Feb 2014 13:58:15 +0200 Subject: sal_Bool->bool Change-Id: I8623ebe2d46cb897d4dd0c0ec9c136d96af0186c --- include/editeng/adjustitem.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/editeng/adjustitem.hxx') 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: -- cgit