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 /include/svl | |
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 'include/svl')
-rw-r--r-- | include/svl/style.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/svl/style.hxx b/include/svl/style.hxx index 5d2174f431df..493ba24004d3 100644 --- a/include/svl/style.hxx +++ b/include/svl/style.hxx @@ -136,7 +136,7 @@ public: { return ( nMask & SFXSTYLEBIT_USERDEF) != 0; } virtual bool IsHidden() const { return bHidden; } - virtual void SetHidden( sal_Bool bValue ); + virtual void SetHidden( bool bValue ); virtual sal_uLong GetHelpId( OUString& rFile ); virtual void SetHelpId( const OUString& r, sal_uLong nId ); @@ -316,8 +316,6 @@ protected: public: SfxStyleSheetPool( SfxItemPool const& ); - -// virtual sal_Bool CopyTo(SfxStyleSheetPool &rDest, const String &rSourceName); }; |