Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Toshok <toshok@novell.com>2006-12-04 18:47:31 +0300
committerChris Toshok <toshok@novell.com>2006-12-04 18:47:31 +0300
commit3482a0b686b1717a6a7639bdde43123fda150a37 (patch)
treefab12fab6e5f30ac8bc4c948cc44c12acb42e717
parentdcca9f5e7a2f84e9cc5aa8cab56631681b60f6a6 (diff)
comment out the calls to MakeTransparent for now - they cause OutOfMemoryExceptions on win32mono-1.2.2
svn path=/branches/mono-1-2-2/mcs/; revision=68953
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGrid.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGrid.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGrid.cs
index 11f65922a22..30710cd7d9e 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGrid.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGrid.cs
@@ -309,10 +309,11 @@ namespace System.Windows.Forms
dataSourceStack = new Stack ();
+ // back these out until we figure out what's going on with ResourceImageLoader and the call to MakeTransparent
back_button_image = ResourceImageLoader.Get ("go-previous.png");
- back_button_image.MakeTransparent (Color.Transparent);
+ //back_button_image.MakeTransparent (Color.Transparent);
parent_rows_button_image = ResourceImageLoader.Get ("go-top.png");
- parent_rows_button_image.MakeTransparent (Color.Transparent);
+ //parent_rows_button_image.MakeTransparent (Color.Transparent);
}
#endregion // Public Constructor