diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-06 15:18:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-06 15:18:26 +0200 |
commit | 2a3d009f697e0275ed4bf668179581c774dc1196 (patch) | |
tree | d157f7e22aca4cf2406965addcd88e23ff51c99c /vcl | |
parent | 9c66d0312f1f19b86fe3747b9c1ab6ee68b872fd (diff) |
Just IMPL_LINK is just fine
Change-Id: I64cfb93b5fcf27a7faff71ca2b4ab8795f46a3b2
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/helper/evntpost.cxx | 3 |
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 ) } |