X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=docs%2Fcontent%2Fprogramming-guide%2Fscript-howto.h;h=b9d3da0a02cfba752b2332b34232b808e9ba5e97;hp=915269ef10a67c914da1d0dd6f51d449e9a5fdfb;hb=c8fee7e69df1ab2bdb5ae06071320542472aaf8e;hpb=01864cd4216d958c5f0e95643dbbeca7c9937716 diff --git a/docs/content/programming-guide/script-howto.h b/docs/content/programming-guide/script-howto.h index 915269e..b9d3da0 100644 --- a/docs/content/programming-guide/script-howto.h +++ b/docs/content/programming-guide/script-howto.h @@ -41,7 +41,7 @@ * return MyActor::New(); * } * - * Dali::Connection MyActor::DoConnectSignalCustom(BaseObject* object, const std::string& signalName, SignalCallback callback) + * Dali::Connection MyActor::DoConnectSignalCustom(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor) * { * Dali::Connection connection ; * @@ -49,13 +49,13 @@ * * if(actor && "page-changed" == signalName) * { - * connection = return actor->SignalPageChanged().Connect((boost::lambda::bind(callback))); + * connection = return actor->PageChangedSignal().Connect( tracker, functor ); * } * * return connection ; * } * - * bool MyActor::DoActionCustom(BaseObject* object, const std::string& actionName, const std::vector& attributes) + * bool MyActor::DoActionCustom(BaseObject* object, const std::string& actionName, const PropertyValueContainer& attributes) * { * bool actioned = false ; *