summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-25 09:17:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-05-25 12:32:53 +0100
commitbfd33a826cf842de8fce9e331b24d25c1bc58b28 (patch)
tree11bca0b4bdaadbf25b60857a2e7ff156bbb32223 /comphelper
parentd3714207b1d8cc323a639a942121b6c1aa4cd61b (diff)
callcatcher: update unused code
Change-Id: I735264eb32ebdd165d23a4717f0329f666b8b140
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/accimplaccess.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/comphelper/source/misc/accimplaccess.cxx b/comphelper/source/misc/accimplaccess.cxx
index 9042b371b6a8..757dbb5dcc10 100644
--- a/comphelper/source/misc/accimplaccess.cxx
+++ b/comphelper/source/misc/accimplaccess.cxx
@@ -76,19 +76,6 @@ namespace comphelper
return m_pImpl->m_nForeignControlledStates;
}
-
- void OAccessibleImplementationAccess::setStateBit( const sal_Int16 _nState, const bool _bSet )
- {
- OSL_ENSURE( _nState >= 0 && static_cast< sal_uInt16 >(_nState) < sizeof( sal_Int64 ) * 8, "OAccessibleImplementationAccess::setStateBit: no more bits (shutting down the universe now)!" );
-
- sal_uInt64 nBitMask( 1 );
- nBitMask <<= _nState;
- if ( _bSet )
- m_pImpl->m_nForeignControlledStates |= nBitMask;
- else
- m_pImpl->m_nForeignControlledStates &= ~nBitMask;
- }
-
namespace { struct lcl_ImplId : public rtl::Static< ::cppu::OImplementationId, lcl_ImplId > {}; }