Author: ivanz
Date: 2008-02-12 10:47:11 -0500 (Tue, 12 Feb 2008)
New Revision: 95520

Modified:
   
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
   
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/GridEntry.cs
Log:
2008-02-12  Ivan N. Zlatev  <[EMAIL PROTECTED]>

        [Backport to 1.9]
        * GridEntry.cs: Fail silently when UITypeEditor is missing.
        [Fixes bug #360666]



Modified: 
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
===================================================================
--- 
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
    2008-02-12 15:44:20 UTC (rev 95519)
+++ 
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
    2008-02-12 15:47:11 UTC (rev 95520)
@@ -1,3 +1,9 @@
+2008-02-12  Ivan N. Zlatev  <[EMAIL PROTECTED]>
+
+       [Backport to 1.9]
+       * GridEntry.cs: Fail silently when UITypeEditor is missing.
+       [Fixes bug #360666]
+
 2008-02-11  Ivan N. Zlatev  <[EMAIL PROTECTED]>
 
        [Backport to 1.9]

Modified: 
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/GridEntry.cs
===================================================================
--- 
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/GridEntry.cs
 2008-02-12 15:44:20 UTC (rev 95519)
+++ 
branches/mono-1-9/mcs/class/Managed.Windows.Forms/System.Windows.Forms/GridEntry.cs
 2008-02-12 15:47:11 UTC (rev 95520)
@@ -351,7 +351,7 @@
                                try { // can happen, because we are missing 
some editors
                                        return PropertyDescriptor.GetEditor 
(typeof (UITypeEditor)) as UITypeEditor;
                                } catch {
-                                       property_grid.ShowError ("Unable to 
load UITypeEditor for property '" + PropertyDescriptor.Name + "'.");
+                                       // property_grid.ShowError ("Unable to 
load UITypeEditor for property '" + PropertyDescriptor.Name + "'.");
                                }
                        }
                        return null;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to