summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-24 22:54:09 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-25 10:11:31 +0100
commit0716cdefb314fd1310bb6de0bcf42d607a8c534e (patch)
tree7793936426e19a961704646a41d0309668d54162 /svtools
parentadd a good(), eof(), bad() and a test case to demonstrate (diff)
downloadcore-0716cdefb314fd1310bb6de0bcf42d607a8c534e.tar.gz
core-0716cdefb314fd1310bb6de0bcf42d607a8c534e.zip
callcatcher: remove unused ForcePendingCall
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();