X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2Fdetail%2FEventBinding.cti;h=fb50ae497ff59b197408e6f3b5ad48613be49327;hb=0327b3f303ea2a61d44a30bfaac022874dcf2a0d;hp=b59906d5e169e202ee1fb76867b8459e787a376f;hpb=b8a3977542aaf217ac472e5266abd0fcffb4f95f;p=senf.git diff --git a/PPI/detail/EventBinding.cti b/PPI/detail/EventBinding.cti index b59906d..fb50ae4 100644 --- a/PPI/detail/EventBinding.cti +++ b/PPI/detail/EventBinding.cti @@ -26,6 +26,7 @@ //#include "EventBinding.ih" // Custom includes +#include "../EventManager.hh" #define prefix_ inline ///////////////////////////////cti.p/////////////////////////////////////// @@ -45,7 +46,7 @@ senf::ppi::detail::EventBindingHelper::callback(EventArg event, template prefix_ void senf::ppi::detail::EventBindingHelper::callback(EventArg event) { - callback(event, ClockService::now()); + callback(event, self().manager().now()); } //////////////////////////////////////// @@ -71,7 +72,7 @@ senf::ppi::detail::EventBindingHelper::callback(ClockService::clock_t template prefix_ void senf::ppi::detail::EventBindingHelper::callback() { - callback(ClockService::now()); + callback(self().manager().now()); } ////////////////////////////////////////