diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-24 22:54:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-25 10:11:31 +0100 |
commit | 0716cdefb314fd1310bb6de0bcf42d607a8c534e (patch) | |
tree | 7793936426e19a961704646a41d0309668d54162 /svtools | |
parent | 1f708c8be92241150258bbca2d457bab8b7a01a1 (diff) |
callcatcher: remove unused ForcePendingCall
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svtools/asynclink.hxx | 1 | ||||
-rw-r--r-- | svtools/source/control/asynclink.cxx | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/svtools/inc/svtools/asynclink.hxx b/svtools/inc/svtools/asynclink.hxx index 6a2b07b9c9b6..48b4f15a16fd 100644 --- a/svtools/inc/svtools/asynclink.hxx +++ b/svtools/inc/svtools/asynclink.hxx @@ -63,7 +63,6 @@ public: void operator=( const Link& rLink ) { _aLink = rLink; } void Call( void* pObj, sal_Bool bAllowDoubles = sal_False, sal_Bool bUseTimer = sal_False ); - void ForcePendingCall( ); void ClearPendingCall( ); sal_Bool IsSet() const { return _aLink.IsSet(); } Link GetLink() const { return _aLink; } diff --git a/svtools/source/control/asynclink.cxx b/svtools/source/control/asynclink.cxx index 9a48cf0c73a1..82a0b207af9a 100644 --- a/svtools/source/control/asynclink.cxx +++ b/svtools/source/control/asynclink.cxx @@ -106,12 +106,6 @@ IMPL_STATIC_LINK( AsynchronLink, HandleCall, void*, EMPTYARG ) return 0; } -void AsynchronLink::ForcePendingCall() -{ - ClearPendingCall(); - Call_Impl( _pArg ); -} - void AsynchronLink::ClearPendingCall() { if( _pMutex ) _pMutex->acquire(); |