summaryrefslogtreecommitdiff
path: root/svtools/source/control/asynclink.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/asynclink.cxx')
-rw-r--r--svtools/source/control/asynclink.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/asynclink.cxx b/svtools/source/control/asynclink.cxx
index 74225829cf8e..87e30ec3c7f1 100644
--- a/svtools/source/control/asynclink.cxx
+++ b/svtools/source/control/asynclink.cxx
@@ -56,7 +56,7 @@ bAllowDoubles
{
_pIdle = new Idle;
_pIdle->SetPriority( SchedulerPriority::HIGHEST );
- _pIdle->SetIdleHdl( STATIC_LINK(
+ _pIdle->SetIdleHdl( LINK(
this, AsynchronLink, HandleCall) );
}
_pIdle->Start();
@@ -64,7 +64,7 @@ bAllowDoubles
else
{
if( _pMutex ) _pMutex->acquire();
- _nEventId = Application::PostUserEvent( STATIC_LINK( this, AsynchronLink, HandleCall), 0 );
+ _nEventId = Application::PostUserEvent( LINK( this, AsynchronLink, HandleCall), 0 );
if( _pMutex ) _pMutex->release();
}
}