From e98c72eccb139d5739409b9b5fdf29da067f9aa0 Mon Sep 17 00:00:00 2001
From: Jouk Jansen <joukj@hrem.nano.tudelft.nl>
Date: Wed, 1 Oct 2008 07:18:14 +0000
Subject: [PATCH] wxMOTIF ?: wxcursor:wxcursor overload fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 src/motif/cursor.cpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/motif/cursor.cpp b/src/motif/cursor.cpp
index 41deb27462..2f5b567bab 100644
--- a/src/motif/cursor.cpp
+++ b/src/motif/cursor.cpp
@@ -239,13 +239,14 @@ void wxCursor::Create(WXPixmap pixmap, WXPixmap mask_pixmap,
 }
 
 wxCursor::wxCursor(const char bits[], int width, int height,
-                   int hotSpotX, int hotSpotY, const char maskBits[])
+                   int hotSpotX, int hotSpotY, const char maskBits[] ,
+                   const wxColour* WXUNUSED(fg), const wxColour* WXUNUSED(bg) )
 {
     Create(bits, width, height, hotSpotX, hotSpotY, maskBits);
 }
 
-wxCursor::wxCursor(const wxString& name, wxBitmapType type, int hotSpotX, int hotSpotY,
-                   const wxColour* WXUNUSED(fg), const wxColour* WXUNUSED(bg))
+wxCursor::wxCursor(const wxString& name, wxBitmapType type, int hotSpotX,
+		   int hotSpotY )
 {
     // Must be an XBM file
     if (type != wxBITMAP_TYPE_XBM) {
-- 
2.47.2