[4.0] check if event is called from main thread always 68/155668/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 02:21:34 +0000 (11:21 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 02:21:43 +0000 (11:21 +0900)
This reverts commit ed5a6eb14f1a3f78f2042eb4c6f33c513472fbd0.

Change-Id: I5bb2f8035be04c8e4fcb0509aaa4a713412e4a29

dali/internal/event/common/object-impl.h [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 89fc73f..73e59e9
@@ -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;
   }