[NUI] fix a CA1507 warning (#2233)
authorYoungbok Shin <id213sin@gmail.com>
Fri, 13 Nov 2020 01:26:32 +0000 (10:26 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Thu, 19 Nov 2020 09:36:46 +0000 (18:36 +0900)
Co-authored-by: Youngbok Shin <youngb.shin@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyleBindableProperty.cs

index afe4a2f..9ebc769 100755 (executable)
@@ -893,7 +893,7 @@ namespace Tizen.NUI.BaseComponents
         /// EnableControlState property
         /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
-        public static readonly BindableProperty ThemeChangeSensitiveProperty = BindableProperty.Create("ThemeChangeSensitive", typeof(bool?), typeof(ViewStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
+        public static readonly BindableProperty ThemeChangeSensitiveProperty = BindableProperty.Create(nameof(ThemeChangeSensitive), typeof(bool?), typeof(ViewStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
         {
             ((ViewStyle)bindable).themeChangeSensitive = (bool?)newValue;
         },