projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
added a trivial test for wxString stream insertion operators
[wxWidgets.git]
/
src
/
x11
/
cursor.cpp
diff --git
a/src/x11/cursor.cpp
b/src/x11/cursor.cpp
index 49e9f1c1d7752481fea5595872728dd0759cb0f1..fb29364b43409cf987cda0da7d7d49851d555c58 100644
(file)
--- a/
src/x11/cursor.cpp
+++ b/
src/x11/cursor.cpp
@@
-141,17
+141,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);
}