summaryrefslogtreecommitdiff
path: root/sd/source/ui/tools/EventMultiplexer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/tools/EventMultiplexer.cxx')
-rw-r--r--sd/source/ui/tools/EventMultiplexer.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sd/source/ui/tools/EventMultiplexer.cxx b/sd/source/ui/tools/EventMultiplexer.cxx
index b776c71c191a..91419735e892 100644
--- a/sd/source/ui/tools/EventMultiplexer.cxx
+++ b/sd/source/ui/tools/EventMultiplexer.cxx
@@ -155,7 +155,7 @@ private:
void ThrowIfDisposed()
throw (::com::sun::star::lang::DisposedException);
- DECL_LINK(SlideSorterSelectionChangeListener, void*);
+ DECL_LINK_TYPED(SlideSorterSelectionChangeListener, LinkParamNone*, void);
};
const char aCurrentPagePropertyName[] = "CurrentPage";
@@ -704,10 +704,9 @@ void EventMultiplexer::Implementation::CallListeners (EventMultiplexerEvent& rEv
}
}
-IMPL_LINK_NOARG(EventMultiplexer::Implementation, SlideSorterSelectionChangeListener)
+IMPL_LINK_NOARG_TYPED(EventMultiplexer::Implementation, SlideSorterSelectionChangeListener, LinkParamNone*, void)
{
- CallListeners (EventMultiplexerEvent::EID_SLIDE_SORTER_SELECTION);
- return 0;
+ CallListeners(EventMultiplexerEvent::EID_SLIDE_SORTER_SELECTION);
}
//===== EventMultiplexerEvent =================================================