Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal" 83/134883/1
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 20 Jun 2017 07:50:33 +0000 (16:50 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 20 Jun 2017 07:50:40 +0000 (16:50 +0900)
This reverts commit e72c514f927e67214497efcbbf545b4017f92f8c.

Change-Id: Ia5c851faf28b45fbf7756aa063f3ec1016ae0618

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

index b729f96..65e043e 100644 (file)
@@ -156,22 +156,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 22b91bf..ac76e78 100644 (file)
@@ -123,11 +123,6 @@ public:
 private: // From Control
 
   /**
-   * @copydoc CustomActorImpl::OnStageConnection()
-   */
-  virtual void OnStageConnection( int depth );
-
-  /**
    * @copydoc Toolkit::Control::GetNaturalSize
    */
   virtual Vector3 GetNaturalSize();