From e6842b65f617fa1cab10712fc007282bfebf99c2 Mon Sep 17 00:00:00 2001 From: Ravi Nanjundappa Date: Tue, 25 Oct 2016 12:29:44 +0530 Subject: [PATCH] DALi C# binding - change name of method, void SetVisible(bool visible) => Show()/Hide() Inserted the code Show()/Hide() into Actor class. Now, instead of SetVisible(true) we can use Show() and for SetVisible(false) we can use Hide(). Change-Id: Ib261160e89d274cfc54ca81963c151322e4d88cb Signed-off-by: Ravi Nanjundappa --- plugins/dali-swig/SWIG/events/actor-event.i | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/dali-swig/SWIG/events/actor-event.i b/plugins/dali-swig/SWIG/events/actor-event.i index 4a5f51f..e92a7b0 100644 --- a/plugins/dali-swig/SWIG/events/actor-event.i +++ b/plugins/dali-swig/SWIG/events/actor-event.i @@ -634,6 +634,16 @@ } } + public void Show() + { + SetVisible(true); + } + + public void Hide() + { + SetVisible(false); + } + %} %enddef -- 2.7.4