From: Youngbok Shin Date: Fri, 13 Nov 2020 01:26:32 +0000 (+0900) Subject: [NUI] fix a CA1507 warning (#2233) X-Git-Tag: accepted/tizen/unified/20210219.040944~274 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=595c8ea6df999886f3fbaac48d4095ca9ec0e178;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] fix a CA1507 warning (#2233) Co-authored-by: Youngbok Shin --- 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; },