]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/cursor.cpp
guard code for mac / quickdraw
[wxWidgets.git] / src / x11 / cursor.cpp
index 03d92bd6506e093b28c905cbf960539f7a620e74..1e1efbc681cedd316abbd4eafe6ca35e21c7cd61 100644 (file)
@@ -36,7 +36,7 @@ class wxCursorRefData: public wxObjectRefData
 public:
 
     wxCursorRefData();
 public:
 
     wxCursorRefData();
-    ~wxCursorRefData();
+    virtual ~wxCursorRefData();
 
     WXCursor     m_cursor;
     WXDisplay   *m_display;
 
     WXCursor     m_cursor;
     WXDisplay   *m_display;
@@ -123,15 +123,17 @@ wxCursor::wxCursor( int cursorId )
 #endif
 }
 
 #endif
 }
 
-wxCursor::wxCursor(const char bits[], int width, int  height,
-                   int hotSpotX, int hotSpotY,
-                   const char maskBits[], wxColour *fg, wxColour *bg)
+wxCursor::wxCursor(const char WXUNUSED(bits)[],
+                   int WXUNUSED(width), int WXUNUSED(height),
+                   int WXUNUSED(hotSpotX), int WXUNUSED(hotSpotY),
+                   const char WXUNUSED(maskBits)[],
+                   wxColour *WXUNUSED(fg), wxColour *WXUNUSED(bg))
 {
    wxFAIL_MSG( wxT("wxCursor creation from bits not yet implemented") );
 }
 
 #if wxUSE_IMAGE
 {
    wxFAIL_MSG( wxT("wxCursor creation from bits not yet implemented") );
 }
 
 #if wxUSE_IMAGE
-wxCursor::wxCursor( const wxImage & image )
+wxCursor::wxCursor( const wxImage & WXUNUSED(image) )
 {
    wxFAIL_MSG( wxT("wxCursor creation from wxImage not yet implemented") );
 }
 {
    wxFAIL_MSG( wxT("wxCursor creation from wxImage not yet implemented") );
 }
@@ -141,17 +143,7 @@ wxCursor::~wxCursor()
 {
 }
 
 {
 }
 
-bool wxCursor::operator == ( const wxCursor& cursor ) const
-{
-    return m_refData == cursor.m_refData;
-}
-
-bool wxCursor::operator != ( const wxCursor& cursor ) const
-{
-    return m_refData != cursor.m_refData;
-}
-
-bool wxCursor::Ok() const
+bool wxCursor::IsOk() const
 {
     return (m_refData != NULL);
 }
 {
     return (m_refData != NULL);
 }