2006-12-24 Chris Toshok <toshok@ximian.com>
authorMiguel de Icaza <miguel@gnome.org>
Sun, 24 Dec 2006 18:03:52 +0000 (18:03 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Sun, 24 Dec 2006 18:03:52 +0000 (18:03 -0000)
* Control.cs: corecompare work here too.

* DataGridViewElement.cs, DataGridView.cs,
DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,

svn path=/trunk/mcs/; revision=70025

mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs

index 9cd16a720577f3c201710b60c754ab059863e8ab..28a8760ee005823078493bdfe94f8ac98ef9f935 100644 (file)
 
 2006-12-24  Miguel de Icaza  <miguel@novell.com>
 
+       * Control.cs: Switched the error message on the console for a
+       todo.  A review of the code will have to cope with this anyways
+       (since its a large feature, it is in our radar) and it was
+       producing too much output when running PDN.
+
        * ToolStripComboBox.cs: Set the text when the SelectedIndex
        changes.  Applications depend on this (PDN 2.72)
 
index d9feef002fbb27364eeaa89739d2db64ffa7c180..04d099b420dd9ccb329998a72273651b8a84882a 100644 (file)
@@ -1671,13 +1671,13 @@ namespace System.Windows.Forms
                [Browsable (false)]
                [EditorBrowsable (EditorBrowsableState.Never)]
                [DefaultValue (false)]
+               [MonoTODO("This method currently does nothing")]
                public virtual bool AutoSize {
                        get {
                                //Console.Error.WriteLine("Unimplemented: Control::get_AutoSize()");
                                return auto_size;
                        }
                        set {
-                               Console.Error.WriteLine("Unimplemented: Control::set_AutoSize(bool)");
                                auto_size = value;
                        }
                }