Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
authorSunghyun kim <scholb.kim@samsung.com>
Mon, 25 Feb 2019 06:58:15 +0000 (15:58 +0900)
committerSunghyun kim <scholb.kim@samsung.com>
Mon, 25 Feb 2019 06:58:17 +0000 (15:58 +0900)
This reverts commit c7d84762db43777627ad936f794afb4b08f3e82b.

Change-Id: I714afc541d27cde83a09f33137d7d3e9ef7e1217

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

index eba1085..96b1b78 100755 (executable)
@@ -233,22 +233,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 8b44b5f..4f05648 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();