From 7c63561c64d346ad1a907e6688057f5ffee92ddc Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Fri, 1 Sep 2017 09:27:08 +0900 Subject: [PATCH] [Tizen] check if event is called from main thread always Change-Id: I11f38cf26fd76641a2445e314b08797684383971 --- dali/internal/event/common/object-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 dali/internal/event/common/object-impl.h diff --git a/dali/internal/event/common/object-impl.h b/dali/internal/event/common/object-impl.h old mode 100644 new mode 100755 index 89fc73f..73e59e9 --- a/dali/internal/event/common/object-impl.h +++ b/dali/internal/event/common/object-impl.h @@ -562,7 +562,7 @@ protected: */ inline EventThreadServices& GetEventThreadServices() { - DALI_ASSERT_DEBUG( EventThreadServices::IsCoreRunning() ); + DALI_ASSERT_ALWAYS( EventThreadServices::IsCoreRunning() ); return mEventThreadServices; } @@ -575,7 +575,7 @@ protected: */ inline const EventThreadServices& GetEventThreadServices() const { - DALI_ASSERT_DEBUG( EventThreadServices::IsCoreRunning() ); + DALI_ASSERT_ALWAYS( EventThreadServices::IsCoreRunning() ); return mEventThreadServices; } -- 2.7.4