summaryrefslogtreecommitdiff
path: root/svx/source/form/delayedevent.cxx
diff options
context:
space:
mode:
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()