Apply OnSceneConnection for dali2 37/240637/1 accepted/tizen/unified/20200811.050426 accepted/tizen/unified/20200814.123056 submit/tizen/20200810.064352 submit/tizen/20200814.024056
authorSunghyun Kim <scholb.kim@samsung.com>
Mon, 10 Aug 2020 08:00:42 +0000 (17:00 +0900)
committerSunghyun Kim <scholb.kim@samsung.com>
Mon, 10 Aug 2020 08:00:42 +0000 (17:00 +0900)
Change-Id: I9a374f4ade58345aff0b38263b54343fdea3e732

widget_viewer_dali/internal/widget_view/widget_view_impl.cpp
widget_viewer_dali/internal/widget_view/widget_view_impl.h

index 6d9c6e30707b9f611fc022b062baed852401a988..f71feab676501ad6b18ac29bc23df6f47c64376a 100644 (file)
@@ -1051,14 +1051,14 @@ void WidgetView::OnInitialize()
   widget_service_set_lifecycle_event_cb( mWidgetId.c_str(), WidgetLifeCycleCallback, this );
 }
 
-void WidgetView::OnStageConnection( int depth )
+void WidgetView::OnSceneConnection( int depth )
 {
-  Control::OnStageConnection( depth );
+  Control::OnSceneConnection( depth );
 }
 
-void WidgetView::OnStageDisconnection()
+void WidgetView::OnSceneDisconnection()
 {
-  Control::OnStageDisconnection();
+  Control::OnSceneDisconnection();
 }
 
 void WidgetView::OnSizeSet( const Vector3& targetSize )
index bb5b31007defc94a87ec8908843ff773da3a72d4..7f9e3975f1bedecea0b4f9fb0c8596967e7a01de 100644 (file)
@@ -241,14 +241,14 @@ private: // From Control
   virtual void OnInitialize();
 
   /**
-   * @copydoc Toolkit::Control::OnStageConnect()
+   * @copydoc Toolkit::Control::OnSceneConnection()
    */
-  virtual void OnStageConnection( int depth );
+  virtual void OnSceneConnection( int depth );
 
   /**
-   * @copydoc Toolkit::Control::OnStageDisconnection()
+   * @copydoc Toolkit::Control::OnSceneDisconnection()
    */
-  virtual void OnStageDisconnection();
+  virtual void OnSceneDisconnection();
 
   /**
    * @copydoc Toolkit::Control::OnSizeSet()