ecere/gui/Cursor: Fixed undefined Load()
authorJerome St-Louis <jerome@ecere.com>
Wed, 6 Jul 2016 09:11:10 +0000 (05:11 -0400)
committerJerome St-Louis <jerome@ecere.com>
Sat, 16 Jul 2016 22:17:46 +0000 (18:17 -0400)
ecere/src/gui/Cursor.ec

index 345b6ba..b1a880c 100644 (file)
@@ -20,6 +20,6 @@ private:
    char * bitmapName;
    SystemCursor systemCursor;
 public:
-   bool Load(const char * name, int hotSpotX, int hotSpotY, byte * paletteShades);
+   bool Load(const char * name, int hotSpotX, int hotSpotY, byte * paletteShades) { return false; }
    property SystemCursor systemCursor { set { systemCursor = value; } }
 };