From 7b7795e0ea89309977a2b1343553a72775d0fe05 Mon Sep 17 00:00:00 2001 From: "Jinho, Lee" Date: Thu, 28 Sep 2017 13:28:19 +0900 Subject: [PATCH] [4.0] check if event is called from main thread always This reverts commit 2d7d2e258f73bb63f895c048b149aa180aae7b2d. Change-Id: I3fe1e5334840700fb189a90b7dd9782a7d0cc8c9 --- 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