diff options
Diffstat (limited to 'include/vcl/ctrl.hxx')
-rw-r--r-- | include/vcl/ctrl.hxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/vcl/ctrl.hxx b/include/vcl/ctrl.hxx index 0f689d04ebe6..115d9dd87ea5 100644 --- a/include/vcl/ctrl.hxx +++ b/include/vcl/ctrl.hxx @@ -69,15 +69,13 @@ protected: @param nEvent the event to notify to our event listeners - @param rHandler - the handler to call - @param pCaller - the parameter to pass to the handler call + @param callHandler + the lambda function that calls the handler @return if the Control instance has been destroyed in any of the call */ bool ImplCallEventListenersAndHandler( - sal_uLong nEvent, const Link<>& rHandler, void* pCaller + sal_uLong nEvent, std::function<void()> callHandler ); /** draws the given text onto the given device |