From: Ravi Nanjundappa Date: Tue, 25 Oct 2016 06:59:44 +0000 (+0530) Subject: DALi C# binding - change name of method, void SetVisible(bool visible) => Show(... X-Git-Tag: dali_1.2.12~8^2 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=e6842b65f617fa1cab10712fc007282bfebf99c2 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 --- 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