[NUI.Samples] Fix compile error after some typo error fix
authorEunki Hong <eunkiki.hong@samsung.com>
Mon, 10 Mar 2025 07:47:00 +0000 (16:47 +0900)
committerWonsik Jung <sidein@samsung.com>
Wed, 12 Mar 2025 04:26:52 +0000 (13:26 +0900)
`WidthSdpecification` --> `WidthSpecification`
`HeightSdpecification` --> `HeightSpecification`
`Disdpose()` --> `Dispose()`

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
test/Tizen.NUI.Samples/Tizen.NUI.Samples/Samples/GraphicsTypeTest.cs

index f6d350a767c55cf08ce14c7eb18e0f4f381d976e..3adb5145b3d2329df1e57cbadc2bd65eededdf8e 100755 (executable)
@@ -14,8 +14,8 @@ namespace Tizen.NUI.Samples
 
             rootView = new ScrollableBase()
             {
-                WidthSdpecification = LayoutParamPolicies.MatchParent,
-                HeightSdpecification = LayoutParamPolicies.MatchParent,
+                WidthSpecification = LayoutParamPolicies.MatchParent,
+                HeightSpecification = LayoutParamPolicies.MatchParent,
                 Layout = new LinearLayout() { LinearOrientation = LinearLayout.Orientation.Vertical},
                 Padding = new Extents(20, 20, 0, 0)
             };
@@ -176,7 +176,7 @@ namespace Tizen.NUI.Samples
         public void Deactivate()
         {
             window.Remove(rootView);
-            rootView.Disdpose();
+            rootView.Dispose();
             rootView = null;
         }
     }