summaryrefslogtreecommitdiff
path: root/include/editeng/outliner.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-14 21:09:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-14 21:28:08 +0100
commit5ea58f534b9226ef8f5c9589066ce20e3c64e0d8 (patch)
tree2a2bbad144a56854b404510a9191845eb7646e40 /include/editeng/outliner.hxx
parentd24134b6a2e6a557bfa17f521e18a01b17e24d98 (diff)
bool improvements
Change-Id: Ic6488ac278cac2d1d7e240abff545f9ea0b8eafe
Diffstat (limited to 'include/editeng/outliner.hxx')
-rw-r--r--include/editeng/outliner.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 15a781d00cc9..1e34d82b8ca9 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -387,9 +387,9 @@ public:
long mnWidthToFill;
// bitfield
- unsigned mbEndOfLine : 1;
- unsigned mbEndOfParagraph : 1;
- unsigned mbEndOfBullet : 1;
+ bool mbEndOfLine : 1;
+ bool mbEndOfParagraph : 1;
+ bool mbEndOfBullet : 1;
sal_uInt8 GetBiDiLevel() const { return mnBiDiLevel; }
sal_Bool IsRTL() const { return mnBiDiLevel % 2 ? sal_True : sal_False; }