From bce06d6a340aa3bceb68a4fc9b8c731ea3f8b02a Mon Sep 17 00:00:00 2001 From: "minho.sun" Date: Mon, 14 Aug 2017 16:49:44 +0900 Subject: [PATCH] Revert "[Tizen] fix TCT BLOCK issue" This reverts commit f85896687bae8c41c1131cae325d5ccfcb4e2b0a. Change-Id: I107db711b39b0cd32b335ac3530f7cdbb0120351 --- Tizen.NUI/src/public/BaseComponents/View.cs | 4 ++-- Tizen.NUI/src/public/CustomView/Spin.cs | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Tizen.NUI/src/public/BaseComponents/View.cs b/Tizen.NUI/src/public/BaseComponents/View.cs index 207c2c4..da95366 100755 --- a/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/Tizen.NUI/src/public/BaseComponents/View.cs @@ -827,7 +827,7 @@ namespace Tizen.NUI.BaseComponents /// /// Handle to an object /// A handle to a View or an uninitialized handle - [Obsolete("Please do not use! this will be deprecated, instead please use as keyword.")] + [Obsolete("Please do not use! this will be deprecated, instead please us as keyword.")] public new static View DownCast(BaseHandle handle) { View ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as View; @@ -835,7 +835,7 @@ namespace Tizen.NUI.BaseComponents return ret; } - [Obsolete("Please do not use! this will be deprecated, instead please use as keyword.")] + [Obsolete("Please do not use! this will be deprecated, instead please us as keyword.")] public static T DownCast(View view) where T : View { T ret = Registry.GetManagedBaseHandleFromNativePtr(view) as T; diff --git a/Tizen.NUI/src/public/CustomView/Spin.cs b/Tizen.NUI/src/public/CustomView/Spin.cs index cfed4a8..e3e9f2c 100755 --- a/Tizen.NUI/src/public/CustomView/Spin.cs +++ b/Tizen.NUI/src/public/CustomView/Spin.cs @@ -76,8 +76,7 @@ namespace Tizen.NUI public override void OnInitialize() { // Initialize the propertiesControl - //_arrowImage = "/home/tengxb/Workspace/nui-debug/examples/res/images/arrow.png"; - _arrowImage = Tizen.Applications.Application.Current.DirectoryInfo.Resource + "picture.png"; + _arrowImage = "/home/tengxb/Workspace/nui-debug/examples/res/images/arrow.png"; _textBackgroundColor = new Color(0.6f, 0.6f, 0.6f, 1.0f); _currentValue = 0; _minValue = 0; -- 2.7.4