diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-29 17:05:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-29 18:29:59 +0200 |
commit | 0acd47f68e3efb46dafd866ee95497da818fa34f (patch) | |
tree | e7bc16002983079713868dd91478d24aac6cfed3 /sd/source/ui/func | |
parent | 17cb3391ece392497eeff4ed32cbf89b4bcb5825 (diff) |
Remove unnecessary IMPL_LINK[_NOARG]_INLINE_START/END
...just use IMPL_LINK[_NOARG] and let the compiler decide what to inline
Change-Id: I63ec5116df7e79093ebf31193f8c674f1351c0e6
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r-- | sd/source/ui/func/fupoor.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
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) { |