projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix undefined variable color to colour
[wxWidgets.git]
/
src
/
gtk1
/
cursor.cpp
diff --git
a/src/gtk1/cursor.cpp
b/src/gtk1/cursor.cpp
index 3f87647fd3985591d9d5b61599a567f5219075b0..3b14510edbbe134402f11879372c9c67a798e749 100644
(file)
--- a/
src/gtk1/cursor.cpp
+++ b/
src/gtk1/cursor.cpp
@@
-31,10
+31,9
@@
extern bool g_isIdle;
// wxCursor
//-----------------------------------------------------------------------------
// wxCursor
//-----------------------------------------------------------------------------
-class wxCursorRefData
: public wxObject
RefData
+class wxCursorRefData
: public wxGDI
RefData
{
{
- public:
-
+public:
wxCursorRefData();
virtual ~wxCursorRefData();
wxCursorRefData();
virtual ~wxCursorRefData();
@@
-316,24
+315,19
@@
wxCursor::~wxCursor()
{
}
{
}
-bool wxCursor::operator == ( const wxCursor& cursor ) const
-{
- return m_refData == cursor.m_refData;
-}
-
-bool wxCursor::operator != ( const wxCursor& cursor ) const
+GdkCursor *wxCursor::GetCursor() const
{
{
- return
m_refData != cursor.m_refData
;
+ return
M_CURSORDATA->m_cursor
;
}
}
-
bool wxCursor::Ok
() const
+
wxGDIRefData *wxCursor::CreateGDIRefData
() const
{
{
- return
(m_refData != NULL)
;
+ return
new wxCursorRefData
;
}
}
-
GdkCursor *wxCursor::GetCursor(
) const
+
wxGDIRefData *wxCursor::CloneGDIRefData(const wxGDIRefData *data
) const
{
{
- return
M_CURSORDATA->m_cursor
;
+ return
new wxCursorRefData(*wx_static_cast(const wxCursorRefData *, data))
;
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------