From 572e92c5970a67035bc1695519bfd0de49ae2e5f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Sat, 11 Mar 2017 01:01:30 +0100 Subject: [PATCH] [WinForms] Fix Bindable attribute argument to use boolean Otherwise mono-api-info crashes on System.Windows.Forms.dll with a NotImplementedException. This is the only place in the codebase where we used `BindableSupport.Yes` instead of `true`. --- .../System.Windows.Forms/System.Windows.Forms/ListControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ListControl.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ListControl.cs index bb77b646c63..8a959c902c6 100644 --- a/mcs/class/System.Windows.Forms/System.Windows.Forms/ListControl.cs +++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/ListControl.cs @@ -203,7 +203,7 @@ namespace System.Windows.Forms set; } - [Bindable(BindableSupport.Yes)] + [Bindable(true)] [Browsable(false)] [DefaultValue(null)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] -- 2.25.1