From 0acd47f68e3efb46dafd866ee95497da818fa34f Mon Sep 17 00:00:00 2001
From: Stephan Bergmann <sbergman@redhat.com>
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
---
 sd/source/ui/func/fupoor.cxx | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

(limited to 'sd/source/ui/func')

diff --git a/sd/source/ui/func/fupoor.cxx b/sd/source/ui/func/fupoor.cxx
index 8ea8462ceedc..d8da1447212b 100644
--- a/sd/source/ui/func/fupoor.cxx
+++ b/sd/source/ui/func/fupoor.cxx
@@ -177,7 +177,7 @@ void FuPoor::ForceScroll(const Point& aPixPos)
 /**
  * timer handler for window scrolling
  */
-IMPL_LINK_NOARG_INLINE_START(FuPoor, ScrollHdl)
+IMPL_LINK_NOARG(FuPoor, ScrollHdl)
 {
     Point aPnt(mpWindow->GetPointerPosPixel());
 
@@ -187,7 +187,6 @@ IMPL_LINK_NOARG_INLINE_START(FuPoor, ScrollHdl)
 
     return 0;
 }
-IMPL_LINK_INLINE_END( FuPoor, ScrollHdl, Timer *, pTimer )
 
 /**
  * handle keyboard events
@@ -983,7 +982,7 @@ bool FuPoor::Command(const CommandEvent& rCEvt)
 /**
  * Timer handler for window scrolling
  */
-IMPL_LINK_NOARG_INLINE_START(FuPoor, DelayHdl)
+IMPL_LINK_NOARG(FuPoor, DelayHdl)
 {
     aDelayToScrollTimer.Stop ();
     bScrollable = true;
@@ -996,7 +995,6 @@ IMPL_LINK_NOARG_INLINE_START(FuPoor, DelayHdl)
 
     return 0;
 }
-IMPL_LINK_INLINE_END( FuPoor, DelayHdl, Timer *, pTimer )
 
 bool FuPoor::MouseButtonUp (const MouseEvent& rMEvt)
 {
-- 
cgit