svn path=/trunk/mcs/; revision=93754
authorGeoff Norton <grompf@sublimeintervention.com>
Thu, 24 Jan 2008 00:52:07 +0000 (00:52 -0000)
committerGeoff Norton <grompf@sublimeintervention.com>
Thu, 24 Jan 2008 00:52:07 +0000 (00:52 -0000)
mcs/class/Managed.Windows.Forms/System.Windows.Forms.CarbonInternal/Cursor.cs

index 85411ffce83e7103b249ecdd4b6ae6e713879ca5..bcdc465f4ce2c9f33b75603d98a317fb6b22eb29 100644 (file)
@@ -33,8 +33,8 @@ using System.Runtime.InteropServices;
 namespace System.Windows.Forms.CarbonInternal {
        internal class Cursor {
                 internal static Bitmap DefineStdCursorBitmap (StdCursor id) {
+                       // FIXME
                        return new Bitmap (16, 16);
-                       throw new NotImplementedException ("We dont support bitmaps of std cursors yet");
                 }
                 internal static IntPtr DefineCursor (Bitmap bitmap, Bitmap mask, Color cursor_pixel, Color mask_pixel, int xHotSpot, int yHotSpot) {
                        CarbonCursor cc = new CarbonCursor (bitmap, mask, cursor_pixel, mask_pixel, xHotSpot, yHotSpot);