X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fsharp%2Finternal%2FButton.cs;h=d9767f670f158054315d27318b95c860117eee62;hp=81aa7db862df1eed7f514f056a7e723e0df0ed71;hb=fbed08db8a1fac3ff6d6e519cf7d9906ae45add9;hpb=acf5beb7c6add7f9aee259715c24e1e75ddbedab;ds=sidebyside diff --git a/plugins/dali-sharp/sharp/internal/Button.cs b/plugins/dali-sharp/sharp/internal/Button.cs index 81aa7db..d9767f6 100644 --- a/plugins/dali-sharp/sharp/internal/Button.cs +++ b/plugins/dali-sharp/sharp/internal/Button.cs @@ -617,8 +617,8 @@ public class StateChangedEventArgs : EventArgs return ret; } - public void SetLabel(Actor label) { - NDalicPINVOKE.Button_SetLabel(swigCPtr, Actor.getCPtr(label)); + public void SetLabel(View label) { + NDalicPINVOKE.Button_SetLabel(swigCPtr, View.getCPtr(label)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -632,14 +632,14 @@ public class StateChangedEventArgs : EventArgs if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public Actor GetButtonImage() { - Actor ret = new Actor(NDalicPINVOKE.Button_GetButtonImage(swigCPtr), true); + public View GetButtonImage() { + View ret = new View(NDalicPINVOKE.Button_GetButtonImage(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public Actor GetSelectedImage() { - Actor ret = new Actor(NDalicPINVOKE.Button_GetSelectedImage(swigCPtr), true); + public View GetSelectedImage() { + View ret = new View(NDalicPINVOKE.Button_GetSelectedImage(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; }