diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-03 15:40:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-04 13:44:15 +0200 |
commit | 3d747045a834e5355df27b7879292abf50e2ca0e (patch) | |
tree | 354104e1b055784caa3c6a61da6dc875a4eca6ea /sw/inc/docstyle.hxx | |
parent | 561f5a875379a01f1c31a5b0226bfefe82432df2 (diff) |
svl/style.hxx: sal_Bool->bool
looks like I missed a couple of methods in my earlier conversion
Change-Id: I07871a451bb5954feab57de0af4f7d0678f9a7b3
Diffstat (limited to 'sw/inc/docstyle.hxx')
-rw-r--r-- | sw/inc/docstyle.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/docstyle.hxx b/sw/inc/docstyle.hxx index e90ff280de31..881cf4380c04 100644 --- a/sw/inc/docstyle.hxx +++ b/sw/inc/docstyle.hxx @@ -98,8 +98,8 @@ public: sal_Bool IsPhysical() const { return bPhysical; } void SetPhysical(sal_Bool bPhys); - virtual void SetHidden( sal_Bool bHidden ) SAL_OVERRIDE; - virtual bool IsHidden( ) const SAL_OVERRIDE; + virtual void SetHidden( bool bHidden ) SAL_OVERRIDE; + virtual bool IsHidden( ) const SAL_OVERRIDE; void SetGrabBagItem(const com::sun::star::uno::Any& rVal); void GetGrabBagItem(com::sun::star::uno::Any& rVal) const; |