Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 13 Apr 2020 08:07:58 +0000 (17:07 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 13 Apr 2020 08:08:02 +0000 (17:08 +0900)
This reverts commit 39780d39a87d424887f7ee79e422360e1b25a610.

Change-Id: I469500b2438d2856046e8cbdc5b65520ff5daeb7

dali-toolkit/internal/controls/image-view/image-view-impl.cpp
dali-toolkit/internal/controls/image-view/image-view-impl.h

index 5a0aa91..035d1d8 100755 (executable)
@@ -234,22 +234,6 @@ void ImageView::SetDepthIndex( int depthIndex )
   }
 }
 
-void ImageView::OnStageConnection( int depth )
-{
-  if( mImage )
-  {
-    mImage.UploadedSignal().Emit( mImage );
-  }
-
-  Dali::ResourceImage resourceImage = Dali::ResourceImage::DownCast( mImage );
-  if( resourceImage )
-  {
-    resourceImage.LoadingFinishedSignal().Emit( resourceImage );
-  }
-
-  Control::OnStageConnection( depth ); // Enabled visuals will be put on stage
-}
-
 Vector3 ImageView::GetNaturalSize()
 {
   if( mVisual )
index a5a114f..fe1bac1 100644 (file)
@@ -128,11 +128,6 @@ private: // From Control
   void OnInitialize();
 
   /**
-   * @copydoc CustomActorImpl::OnStageConnection()
-   */
-  virtual void OnStageConnection( int depth );
-
-  /**
    * @copydoc Toolkit::Control::GetNaturalSize
    */
   virtual Vector3 GetNaturalSize();