From e3cce7d81399badd36db1340cf4a3106ad43bf0c Mon Sep 17 00:00:00 2001 From: Geoff Norton Date: Thu, 24 Jan 2008 01:44:10 +0000 Subject: [PATCH] In System.Windows.Forms.CarbonInternal: * Cursor.cs: Expose the colors to avoid some warnings until we use them 2008-01-23 Geoff Norton svn path=/trunk/mcs/; revision=93757 --- .../System.Windows.Forms.CarbonInternal/ChangeLog | 4 ++++ .../System.Windows.Forms.CarbonInternal/Cursor.cs | 12 ++++++++++++ 2 files changed, 16 insertions(+) diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/ChangeLog index ce62981e91a..45bc6a88d3c 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/ChangeLog +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/ChangeLog @@ -1,3 +1,7 @@ +2008-01-23 Geoff Norton + + * Cursor.cs: Expose the colors to avoid some warnings until we use them + 2008-01-23 Geoff Norton * MouseHandler.cs: Send HITTEST events. diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/Cursor.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/Cursor.cs index bcdc465f4ce..9f2709627ae 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/Cursor.cs +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/Cursor.cs @@ -106,6 +106,18 @@ namespace System.Windows.Forms.CarbonInternal { } } + public Color CursorColor { + get { + return cursor_color; + } + } + + public Color MaskColor { + get { + return mask_color; + } + } + public int HotSpotX { get { return hot_x; -- 2.25.1