From 595c8ea6df999886f3fbaac48d4095ca9ec0e178 Mon Sep 17 00:00:00 2001 From: Youngbok Shin Date: Fri, 13 Nov 2020 10:26:32 +0900 Subject: [PATCH] [NUI] fix a CA1507 warning (#2233) Co-authored-by: Youngbok Shin --- .../src/public/BaseComponents/Style/ViewStyleBindableProperty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyleBindableProperty.cs b/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyleBindableProperty.cs index afe4a2f..9ebc769 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyleBindableProperty.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyleBindableProperty.cs @@ -893,7 +893,7 @@ namespace Tizen.NUI.BaseComponents /// EnableControlState property /// [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; }, -- 2.7.4