summaryrefslogtreecommitdiff
path: root/vcl/source/helper/evntpost.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/helper/evntpost.cxx')
-rw-r--r--vcl/source/helper/evntpost.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/helper/evntpost.cxx b/vcl/source/helper/evntpost.cxx
index 8989ba253af6..6c551e1adc24 100644
--- a/vcl/source/helper/evntpost.cxx
+++ b/vcl/source/helper/evntpost.cxx
@@ -41,13 +41,12 @@ void EventPoster::Post( UserEvent* pEvent )
m_nId = GetpApp()->PostUserEvent( ( LINK( this, EventPoster, DoEvent_Impl ) ), pEvent );
}
-IMPL_LINK_INLINE_START( EventPoster, DoEvent_Impl, UserEvent*, pEvent )
+IMPL_LINK( EventPoster, DoEvent_Impl, UserEvent*, pEvent )
{
m_nId = 0;
m_aLink.Call( pEvent );
return 0;
}
-IMPL_LINK_INLINE_END( EventPoster, DoEvent_Impl, UserEvent*, pEvent )
}