[NUI] Fix Navigator sample build error
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Thu, 22 Jul 2021 07:50:36 +0000 (16:50 +0900)
committerJaehyun Cho <jaehyun0cho@gmail.com>
Thu, 22 Jul 2021 07:47:50 +0000 (16:47 +0900)
Since PoppedEventArgs provides Page, page is replaced to Page to fix
build error.

test/Tizen.NUI.Samples/Tizen.NUI.Samples/Samples/NavigatorSample.cs

index a8dfb52..f5e55ab 100644 (file)
@@ -12,9 +12,9 @@ namespace Tizen.NUI.Samples
         private void Popped(object sender, PoppedEventArgs args)
         {
             global::System.Console.WriteLine("Page is popped!");
-            args.page.Dispose();
+            args.Page.Dispose();
 
-            if (args.page == firstPage)
+            if (args.Page == firstPage)
             {
                 firstPage = null;
             }