X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-swig%2FSWIG%2Fevents%2Ftimer-event.i;h=00dae5b8e1ebcf97fc3586158ce0c0cb52f1d0cc;hp=e6fb89afed52c3abe8c1dc662661cac913952d68;hb=13f7f10f99c5253c500ffd644a1ac4a9039d4a07;hpb=5bdacbc181f88698499b69199b584d05a2791454 diff --git a/plugins/dali-swig/SWIG/events/timer-event.i b/plugins/dali-swig/SWIG/events/timer-event.i index e6fb89a..00dae5b 100644 --- a/plugins/dali-swig/SWIG/events/timer-event.i +++ b/plugins/dali-swig/SWIG/events/timer-event.i @@ -44,7 +44,7 @@ using System.Runtime.InteropServices; * (in the type of TickEventHandler-DaliEventHandlerWithReturnType) * provided by the user. Ticked signal is emitted after specified time interval. */ - public event DaliEventHandlerWithReturnType Ticked + public event DaliEventHandlerWithReturnType Tick { add { @@ -83,7 +83,7 @@ using System.Runtime.InteropServices; if (_timerTickEventHandler != null) { //here we send all data to user event handlers - return _timerTickEventHandler(this, e, true); + return _timerTickEventHandler(this, e); } return false; } @@ -102,5 +102,5 @@ using System.Runtime.InteropServices; namespace Dali { - DALI_TIMER_EVENTHANDLER_PARAM( Dali::Adaptor, Timer); + DALI_TIMER_EVENTHANDLER_PARAM( Dali, Timer); }