diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:09:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:28:08 +0100 |
commit | 5ea58f534b9226ef8f5c9589066ce20e3c64e0d8 (patch) | |
tree | 2a2bbad144a56854b404510a9191845eb7646e40 /include/editeng/outliner.hxx | |
parent | d24134b6a2e6a557bfa17f521e18a01b17e24d98 (diff) |
bool improvements
Change-Id: Ic6488ac278cac2d1d7e240abff545f9ea0b8eafe
Diffstat (limited to 'include/editeng/outliner.hxx')
-rw-r--r-- | include/editeng/outliner.hxx | 6 |
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; } |