]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/pen.cpp
really correct detecting the end of UTF-7-encoded strings
[wxWidgets.git] / src / os2 / pen.cpp
index effcfc0cbe484b33b74511675ea428d11912b219..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
 );
@@ -479,7 +488,7 @@ void wxPen::SetCap(
     RealizeResource();
 } // end of wxPen::SetCap
 
-wxColour& wxPen::GetColour() const
+wxColour wxPen::GetColour() const
 {
     wxCHECK_MSG( Ok(), wxNullColour, wxT("invalid pen") );