Support for adding and removing Views from the Root Layer of Window
authorUmar <m.umar@partner.samsung.com>
Mon, 5 Jun 2017 18:31:44 +0000 (19:31 +0100)
committerUmar <m.umar@partner.samsung.com>
Mon, 5 Jun 2017 18:31:44 +0000 (19:31 +0100)
Change-Id: I1be658ddb73b5955fc1cbd392c100e38f23dfe27

src/Tizen.NUI/src/public/Window.cs

index facdbb0..e2d05a7 100755 (executable)
@@ -539,13 +539,13 @@ namespace Tizen.NUI
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        internal void Add(View view)
+        public void Add(View view)
         {
             NDalicPINVOKE.Stage_Add(stageCPtr, View.getCPtr(view));
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        internal void Remove(View view)
+        public void Remove(View view)
         {
             NDalicPINVOKE.Stage_Remove(stageCPtr, View.getCPtr(view));
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();