summaryrefslogtreecommitdiff
path: root/svx/source/dialog/rulritem.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-02 10:41:35 +0200
committerNoel Grandin <noel@peralex.com>2014-06-03 08:21:39 +0200
commit2537d2dd496c0d05042ca33b99760de79df67682 (patch)
tree80796bedaf348d58b621df99d167308f7651633b /svx/source/dialog/rulritem.cxx
parent418c5f7a4911bb2f1a06858556131b1bc4ad54f6 (diff)
convert some sal_uInt8 fields to bool
Change-Id: Icd5845367157cc0b0c9342c6037b199c49432a76
Diffstat (limited to 'svx/source/dialog/rulritem.cxx')
-rw-r--r--svx/source/dialog/rulritem.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/dialog/rulritem.cxx b/svx/source/dialog/rulritem.cxx
index a6bb6e8c273a..6c914271d75d 100644
--- a/svx/source/dialog/rulritem.cxx
+++ b/svx/source/dialog/rulritem.cxx
@@ -457,8 +457,8 @@ SvxColumnItem::SvxColumnItem( sal_uInt16 nAct ) :
nLeft (0),
nRight (0),
nActColumn (nAct),
- bTable (sal_False),
- bOrtho (sal_True)
+ bTable (false),
+ bOrtho (true)
{}
@@ -467,8 +467,8 @@ SvxColumnItem::SvxColumnItem( sal_uInt16 nActCol, sal_uInt16 left, sal_uInt16 ri
nLeft (left),
nRight (right),
nActColumn (nActCol),
- bTable (sal_True),
- bOrtho (sal_True)
+ bTable (true),
+ bOrtho (true)
{}
SvxColumnItem::SvxColumnItem( const SvxColumnItem& rCopy ) :