[Tizen] check if event is called from main thread always 37/147037/1
authorHeeyong Song <heeyong.song@samsung.com>
Fri, 1 Sep 2017 00:27:08 +0000 (09:27 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Fri, 1 Sep 2017 00:27:11 +0000 (09:27 +0900)
Change-Id: I11f38cf26fd76641a2445e314b08797684383971

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;
   }