TimerPtr Timer::New( unsigned int milliSec )
{
TimerPtr timer( new Timer( milliSec ) );
- DALI_LOG_ERROR("Timer::New: called [%p]\n", timer.Get());
return timer;
}
// Timer should be used in the event thread
DALI_ASSERT_DEBUG( Adaptor::IsAvailable() );
- DALI_LOG_ERROR("Timer::Start: called [%p]\n", this);
-
if(mImpl->mId != NULL)
{
Stop();
// Timer should be used in the event thread
DALI_ASSERT_DEBUG( Adaptor::IsAvailable() );
- DALI_LOG_ERROR("Timer::Stop: called [%p]\n", this);
-
ResetTimerData();
}
bool retVal( false );
- DALI_LOG_ERROR("Timer::Tick: called [%p]\n", this);
-
// Override with new signal if used
if( !mTickSignal.Empty() )
{