Kaydet (Commit) 3d747045 authored tarafından Noel Grandin's avatar Noel Grandin

svl/style.hxx: sal_Bool->bool

looks like I missed a couple of methods in my earlier conversion

Change-Id: I07871a451bb5954feab57de0af4f7d0678f9a7b3
üst 561f5a87
...@@ -136,7 +136,7 @@ public: ...@@ -136,7 +136,7 @@ public:
{ return ( nMask & SFXSTYLEBIT_USERDEF) != 0; } { return ( nMask & SFXSTYLEBIT_USERDEF) != 0; }
virtual bool IsHidden() const { return bHidden; } virtual bool IsHidden() const { return bHidden; }
virtual void SetHidden( sal_Bool bValue ); virtual void SetHidden( bool bValue );
virtual sal_uLong GetHelpId( OUString& rFile ); virtual sal_uLong GetHelpId( OUString& rFile );
virtual void SetHelpId( const OUString& r, sal_uLong nId ); virtual void SetHelpId( const OUString& r, sal_uLong nId );
...@@ -316,8 +316,6 @@ protected: ...@@ -316,8 +316,6 @@ protected:
public: public:
SfxStyleSheetPool( SfxItemPool const& ); SfxStyleSheetPool( SfxItemPool const& );
// virtual sal_Bool CopyTo(SfxStyleSheetPool &rDest, const String &rSourceName);
}; };
......
...@@ -238,7 +238,7 @@ bool SfxStyleSheetBase::SetParent( const OUString& rName ) ...@@ -238,7 +238,7 @@ bool SfxStyleSheetBase::SetParent( const OUString& rName )
return true; return true;
} }
void SfxStyleSheetBase::SetHidden( sal_Bool hidden ) void SfxStyleSheetBase::SetHidden( bool hidden )
{ {
bHidden = hidden; bHidden = hidden;
pPool->Broadcast( SfxStyleSheetHint( SFX_STYLESHEET_MODIFIED, *this ) ); pPool->Broadcast( SfxStyleSheetHint( SFX_STYLESHEET_MODIFIED, *this ) );
......
...@@ -98,8 +98,8 @@ public: ...@@ -98,8 +98,8 @@ public:
sal_Bool IsPhysical() const { return bPhysical; } sal_Bool IsPhysical() const { return bPhysical; }
void SetPhysical(sal_Bool bPhys); void SetPhysical(sal_Bool bPhys);
virtual void SetHidden( sal_Bool bHidden ) SAL_OVERRIDE; virtual void SetHidden( bool bHidden ) SAL_OVERRIDE;
virtual bool IsHidden( ) const SAL_OVERRIDE; virtual bool IsHidden( ) const SAL_OVERRIDE;
void SetGrabBagItem(const com::sun::star::uno::Any& rVal); void SetGrabBagItem(const com::sun::star::uno::Any& rVal);
void GetGrabBagItem(com::sun::star::uno::Any& rVal) const; void GetGrabBagItem(com::sun::star::uno::Any& rVal) const;
......
...@@ -509,7 +509,7 @@ void SwDocStyleSheet::GetGrabBagItem(uno::Any& rVal) const ...@@ -509,7 +509,7 @@ void SwDocStyleSheet::GetGrabBagItem(uno::Any& rVal) const
} }
} }
// virtual methods // virtual methods
void SwDocStyleSheet::SetHidden( sal_Bool bValue ) void SwDocStyleSheet::SetHidden( bool bValue )
{ {
bool bChg = false; bool bChg = false;
if(!bPhysical) if(!bPhysical)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment