diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-12-07 23:46:54 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-12-07 23:48:03 +0900 |
commit | a25b3dd6c474f2a496c0ba2b1d24926ea60417da (patch) | |
tree | c574765096d97e7fd5687f358a8625691a099f8b /sw/source/core/text/portab.hxx | |
parent | a48e2fd9049797110b3b2505c363557284987ca8 (diff) |
sal_Bool to bool
Change-Id: I4f4ffff778ff0bb14ddb3e4ae5f9b76104fc8bed
Diffstat (limited to 'sw/source/core/text/portab.hxx')
-rw-r--r-- | sw/source/core/text/portab.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/portab.hxx b/sw/source/core/text/portab.hxx index 63a8f37e7618..75841be07b70 100644 --- a/sw/source/core/text/portab.hxx +++ b/sw/source/core/text/portab.hxx @@ -41,7 +41,7 @@ public: sal_Bool PostFormat( SwTxtFormatInfo &rInf ); inline sal_Bool IsFilled() const { return 0 != cFill; } inline KSHORT GetTabPos() const { return nTabPos; } - inline sal_Bool IsAutoTabStop() const { return bAutoTabStop; } + inline bool IsAutoTabStop() const { return bAutoTabStop; } // Accessibility: pass information about this portion to the PortionHandler virtual void HandlePortion( SwPortionHandler& rPH ) const; |