diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-02 10:41:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-03 08:21:39 +0200 |
commit | 2537d2dd496c0d05042ca33b99760de79df67682 (patch) | |
tree | 80796bedaf348d58b621df99d167308f7651633b /include/svx/rulritem.hxx | |
parent | 418c5f7a4911bb2f1a06858556131b1bc4ad54f6 (diff) |
convert some sal_uInt8 fields to bool
Change-Id: Icd5845367157cc0b0c9342c6037b199c49432a76
Diffstat (limited to 'include/svx/rulritem.hxx')
-rw-r--r-- | include/svx/rulritem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/rulritem.hxx b/include/svx/rulritem.hxx index f1b72681a640..56074eee1e13 100644 --- a/include/svx/rulritem.hxx +++ b/include/svx/rulritem.hxx @@ -155,8 +155,8 @@ class SVX_DLLPUBLIC SvxColumnItem : public SfxPoolItem long nRight; // Right edge for the table; for columns always // equal to the surrounding frame sal_uInt16 nActColumn; // the current column - sal_uInt8 bTable; // table? - sal_uInt8 bOrtho; // evenly spread columns + bool bTable; // table? + bool bOrtho; // evenly spread columns protected: virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE; |