From 0acd47f68e3efb46dafd866ee95497da818fa34f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 29 Apr 2015 17:05:19 +0200 Subject: Remove unnecessary IMPL_LINK[_NOARG]_INLINE_START/END ...just use IMPL_LINK[_NOARG] and let the compiler decide what to inline Change-Id: I63ec5116df7e79093ebf31193f8c674f1351c0e6 --- sc/workben/result.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sc/workben') diff --git a/sc/workben/result.cxx b/sc/workben/result.cxx index 3f951954339b..7d43f8d9322b 100644 --- a/sc/workben/result.cxx +++ b/sc/workben/result.cxx @@ -50,13 +50,12 @@ void ScAddInResult::NewValue() (*aListeners[n])->modified( aEvent ); } -IMPL_LINK_INLINE_START( ScAddInResult, TimeoutHdl, Timer*, pT ) +IMPL_LINK( ScAddInResult, TimeoutHdl, Timer*, pT ) { NewValue(); pT->Start(); return 0; } -IMPL_LINK_INLINE_END( ScAddInResult, TimeoutHdl, Timer*, pT ) ScAddInResult::~ScAddInResult() { -- cgit