]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/cursor.cpp
Font fixes and icons in report view for list control
[wxWidgets.git] / src / gtk1 / cursor.cpp
index 3d22b288ad6437ee71575748b65e6a1167236542..01a469f84fa8609c332861c9f41948f858b2fa9d 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        cursor.cpp
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -31,7 +30,7 @@ class wxCursorRefData: public wxObjectRefData
 
 wxCursorRefData::wxCursorRefData(void)
 {
-  m_cursor = NULL;
+  m_cursor = (GdkCursor *) NULL;
 }
 
 wxCursorRefData::~wxCursorRefData(void)
@@ -133,7 +132,7 @@ bool wxCursor::operator != ( const wxCursor& cursor )
 
 bool wxCursor::Ok(void) const
 {
-  return TRUE;
+  return (m_refData != NULL);
 }
 
 GdkCursor *wxCursor::GetCursor(void) const