[Libreoffice-commits] core.git: vcl/source
Stephan Bergmann
sbergman at redhat.com
Tue May 6 06:18:56 PDT 2014
vcl/source/helper/evntpost.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 2a3d009f697e0275ed4bf668179581c774dc1196
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue May 6 15:18:26 2014 +0200
Just IMPL_LINK is just fine
Change-Id: I64cfb93b5fcf27a7faff71ca2b4ab8795f46a3b2
diff --git a/vcl/source/helper/evntpost.cxx b/vcl/source/helper/evntpost.cxx
index 8989ba2..6c551e1 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 )
}
More information about the Libreoffice-commits
mailing list