diff options
Diffstat (limited to 'include/tools/resid.hxx')
-rw-r--r-- | include/tools/resid.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tools/resid.hxx b/include/tools/resid.hxx index 14c0a11915f7..89606c824658 100644 --- a/include/tools/resid.hxx +++ b/include/tools/resid.hxx @@ -132,7 +132,7 @@ public: return *this; } - const ResId & SetAutoRelease(sal_Bool bRelease) const + const ResId & SetAutoRelease(bool bRelease) const { if( bRelease ) m_nResId &= ~RSC_DONTRELEASE; @@ -141,8 +141,8 @@ public: return *this; } - sal_Bool IsAutoRelease() const - { return !(m_nResId & RSC_DONTRELEASE); } + bool IsAutoRelease() const + { return !(m_nResId & RSC_DONTRELEASE); } sal_uInt32 GetId() const { return m_nResId & ~RSC_DONTRELEASE; } RSHEADER_TYPE* GetpResource() const { return m_pResource; } |