summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/svtools/asynclink.hxx1
-rw-r--r--svtools/source/control/asynclink.cxx6
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();