summaryrefslogtreecommitdiff
path: root/svx/source/form/delayedevent.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-16 13:55:04 +0200
committerNoel Grandin <noel@peralex.com>2015-09-17 08:19:33 +0200
commitda1d52150d3475d44ee8be352154bbef5335421c (patch)
tree6a6fb8467071d330929ee9790ab6fa3b24faefe9 /svx/source/form/delayedevent.cxx
parentb9d0dc6a3813cac8a21ae1ce4d9332fc8d26ef50 (diff)
convert Link<> to typed
Change-Id: I16452cc87c48d95466a46e54619e4247742328ff
Diffstat (limited to 'svx/source/form/delayedevent.cxx')
-rw-r--r--svx/source/form/delayedevent.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/form/delayedevent.cxx b/svx/source/form/delayedevent.cxx
index 0d12fdbd2dbf..1105e1a1de5c 100644
--- a/svx/source/form/delayedevent.cxx
+++ b/svx/source/form/delayedevent.cxx
@@ -22,12 +22,12 @@
namespace svxform
{
- void DelayedEvent::Call( void* _pArg )
+ void DelayedEvent::Call()
{
CancelPendingCall();
SAL_WARN_IF( m_nEventId != 0, "svx.form", "DelayedEvent::Call: CancelPendingCall did not work!" );
- m_nEventId = Application::PostUserEvent( LINK( this, DelayedEvent, OnCall ), _pArg );
+ m_nEventId = Application::PostUserEvent( LINK( this, DelayedEvent, OnCall ), nullptr );
}
void DelayedEvent::CancelPendingCall()