X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=docs%2Fcontent%2Fprogramming-guide%2Fhello-world.h;h=c7b5dddaf5d90673794084ea4353ea3e3a843126;hp=9c4383f7311dc4cfe39993fc22e7578e62f3b8b6;hb=acbf7e2c17c1578c7125fa07c7eaabe1fe214406;hpb=78d6c4118411aa10112953fe6844eb08c944dd59 diff --git a/docs/content/programming-guide/hello-world.h b/docs/content/programming-guide/hello-world.h index 9c4383f..c7b5ddd 100644 --- a/docs/content/programming-guide/hello-world.h +++ b/docs/content/programming-guide/hello-world.h @@ -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();