diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-28 15:15:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-28 15:15:26 +0100 |
commit | 77fd24afc6b51091c917fe6e98d1f0110acfc616 (patch) | |
tree | dd4cab37b0509a327fe9bb67baae34b5d13fceae /include | |
parent | 1714f4d3e8d5a6ae586a0facca4871037896adde (diff) |
Remove remaining DBG_CTOR etc. remnants from basic
Change-Id: Ia714029c2e32e28c1bb6f4f59d0c7f357eccc236
Diffstat (limited to 'include')
-rw-r--r-- | include/basic/sbxcore.hxx | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/include/basic/sbxcore.hxx b/include/basic/sbxcore.hxx index 4fd6cb9fe04b..5bf2b2ec61db 100644 --- a/include/basic/sbxcore.hxx +++ b/include/basic/sbxcore.hxx @@ -52,8 +52,6 @@ class SbxBase; class SbxFactory; class SbxObject; -DBG_NAMEEX_VISIBILITY(SbxBase, BASIC_DLLPUBLIC) - class BASIC_DLLPUBLIC SbxBase : virtual public SvRefBase { virtual bool LoadData( SvStream&, sal_uInt16 ); @@ -111,43 +109,40 @@ public: SV_DECL_REF(SbxBase) inline void SbxBase::SetFlags( sal_uInt16 n ) -{ //DBG_CHKTHIS( SbxBase, 0 ); - nFlags = n; } +{ nFlags = n; } inline sal_uInt16 SbxBase::GetFlags() const -{ DBG_CHKTHIS( SbxBase, 0 ); return nFlags; } +{ return nFlags; } inline void SbxBase::SetFlag( sal_uInt16 n ) -{ //DBG_CHKTHIS( SbxBase, 0 ); - nFlags |= n; } +{ nFlags |= n; } inline void SbxBase::ResetFlag( sal_uInt16 n ) -{ //DBG_CHKTHIS( SbxBase, 0 ); - nFlags &= ~n; } +{ nFlags &= ~n; } inline bool SbxBase::IsSet( sal_uInt16 n ) const -{ DBG_CHKTHIS( SbxBase, 0 ); return ( nFlags & n ) != 0; } +{ return ( nFlags & n ) != 0; } inline bool SbxBase::IsReset( sal_uInt16 n ) const -{ DBG_CHKTHIS( SbxBase, 0 ); return ( nFlags & n ) == 0; } +{ return ( nFlags & n ) == 0; } inline bool SbxBase::CanRead() const -{ DBG_CHKTHIS( SbxBase, 0 ); return IsSet( SBX_READ ); } +{ return IsSet( SBX_READ ); } inline bool SbxBase::CanWrite() const -{ DBG_CHKTHIS( SbxBase, 0 ); return IsSet( SBX_WRITE ); } +{ return IsSet( SBX_WRITE ); } inline bool SbxBase::IsModified() const -{ DBG_CHKTHIS( SbxBase, 0 ); return IsSet( SBX_MODIFIED ); } +{ return IsSet( SBX_MODIFIED ); } inline bool SbxBase::IsConst() const -{ DBG_CHKTHIS( SbxBase, 0 ); return IsSet( SBX_CONST ); } +{ return IsSet( SBX_CONST ); } inline bool SbxBase::IsHidden() const -{ DBG_CHKTHIS( SbxBase, 0 ); return IsSet( SBX_HIDDEN ); } +{ return IsSet( SBX_HIDDEN ); } inline bool SbxBase::IsVisible() const -{ DBG_CHKTHIS( SbxBase, 0 ); return IsReset( SBX_INVISIBLE ); } +{ return IsReset( SBX_INVISIBLE ); } #endif |