diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-11-17 06:44:00 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-11-17 07:22:43 +0900 |
commit | 5c6bbe6a23b6b746dcbb20de1360b4745b1e4679 (patch) | |
tree | 6ee815098d4e6340ec2bd7ddba3f8ee68c48102e /sw/inc/frmfmt.hxx | |
parent | c7bedbf124b4c903249ea78ba1f819e1e58d38f7 (diff) |
sal_Bool to bool
Change-Id: I0b01f904f78ec1a3d1aebd2af2ae8f55588a504f
Diffstat (limited to 'sw/inc/frmfmt.hxx')
-rw-r--r-- | sw/inc/frmfmt.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx index 29436cbe7bb9..aa86dce5da9f 100644 --- a/sw/inc/frmfmt.hxx +++ b/sw/inc/frmfmt.hxx @@ -191,7 +191,7 @@ public: @return true, if background color is transparent, but not "no fill" or a existing background graphic is transparent. */ - virtual sal_Bool IsBackgroundTransparent() const; + virtual bool IsBackgroundTransparent() const; /** SwFlyFrmFmt::IsBackgroundBrushInherited @@ -204,7 +204,7 @@ public: @return true, if background brush is "inherited" from parent/grandparent */ - sal_Bool IsBackgroundBrushInherited() const; + bool IsBackgroundBrushInherited() const; const Point & GetLastFlyFrmPrtRectPos() const { return m_aLastFlyFrmPrtRectPos; } void SetLastFlyFrmPrtRectPos( const Point &rPoint ) { m_aLastFlyFrmPrtRectPos = rPoint; } |