summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-03 15:40:33 +0200
committerNoel Grandin <noel@peralex.com>2014-04-04 13:44:15 +0200
commit3d747045a834e5355df27b7879292abf50e2ca0e (patch)
tree354104e1b055784caa3c6a61da6dc875a4eca6ea /sw
parent561f5a875379a01f1c31a5b0226bfefe82432df2 (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')
-rw-r--r--sw/inc/docstyle.hxx4
-rw-r--r--sw/source/core/uibase/app/docstyle.cxx2
2 files changed, 3 insertions, 3 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;
diff --git a/sw/source/core/uibase/app/docstyle.cxx b/sw/source/core/uibase/app/docstyle.cxx
index ca86a8ca684f..fb91ee4daec0 100644
--- a/sw/source/core/uibase/app/docstyle.cxx
+++ b/sw/source/core/uibase/app/docstyle.cxx
@@ -509,7 +509,7 @@ void SwDocStyleSheet::GetGrabBagItem(uno::Any& rVal) const
}
}
// virtual methods
-void SwDocStyleSheet::SetHidden( sal_Bool bValue )
+void SwDocStyleSheet::SetHidden( bool bValue )
{
bool bChg = false;
if(!bPhysical)