X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=docs%2Fcontent%2Fprogramming-guide%2Fhello-world.h;h=780ad3eeae243f4e6fe063f07fdfb96013778619;hb=5f03eb8d802b39ab519b15d5bca02f0ed01f2766;hp=9c4383f7311dc4cfe39993fc22e7578e62f3b8b6;hpb=7118f6784ab97ba8eb1dd1a5792bbe472d99b3c6;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/docs/content/programming-guide/hello-world.h b/docs/content/programming-guide/hello-world.h index 9c4383f..780ad3e 100644 --- a/docs/content/programming-guide/hello-world.h +++ b/docs/content/programming-guide/hello-world.h @@ -1,6 +1,6 @@ /*! \page hello-world Hello World - explained -The following steps are required for displaying the sentence 'Hello World' with Dali: +The following steps are required for displaying the sentence 'Hello World' with DALi: - initialize the DALi library - create an Actor showing text @@ -48,10 +48,10 @@ public: stage.Add( mTextLabel ); // Respond to a click anywhere on the stage - stage.GetRootLayer().TouchedSignal().Connect( this, &HelloWorldController::OnTouch ); + stage.GetRootLayer().TouchSignal().Connect( this, &HelloWorldController::OnTouch ); } - bool OnTouch( Actor actor, const TouchEvent& touch ) + bool OnTouch( Actor actor, const TouchData& touch ) { // quit the application mApplication.Quit();