]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/pen.cpp
Added 32-bit (UCS-4) wxUString class
[wxWidgets.git] / src / os2 / pen.cpp
index 6dd16877ede3f56f152a2ad4f918c99b83f2e66d..301c86059c7b448671fa1f0f79a5bf108f1089da 100644 (file)
@@ -168,6 +168,15 @@ wxPen::wxPen(
     RealizeResource();
 } // end of wxPen::wxPen
 
+bool wxPen::operator==(const wxPen& pen) const
+{
+    const wxPenRefData *
+        penData = wx_static_cast(const wxPenRefData *, pen.m_refData);
+
+    // an invalid pen is only equal to another invalid pen
+    return m_refData ? penData && *M_PENDATA == *penData : !penData;
+}
+
 int wx2os2PenStyle(
   wxPenStyle                               nWxStyle
 );