Remove ImageActor usage from programming guide
[platform/core/uifw/dali-toolkit.git] / docs / content / programming-guide / scroll-view.h
index 981e4da..f236440 100644 (file)
@@ -31,8 +31,8 @@
 
    Add Actors to this ScrollView
    @code
-   ImageView imageActor = Toolkit::ImageView::New(DALI_IMAGE_DIR "button-background.png");
-   myScrollView.Add( imageActor );
+   Toolkit::ImageView imageView = Toolkit::ImageView::New(DALI_IMAGE_DIR "button-background.png");
+   myScrollView.Add( imageView );
    @endcode
 
    The ScrollView contents are now draggable by the user using touch (panning gestures).