]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/pen.cpp
forgot to commit project file for CW before
[wxWidgets.git] / src / gtk / pen.cpp
index 66470bcc89f3ed6f3ca0ede37e108b9065e95585..176463b69d23c99b9eac083718478332a91f1afd 100644 (file)
@@ -52,6 +52,11 @@ public:
 
     bool operator == (const wxPenRefData& data) const
     {
+        // It is impossible to tell if the dashes have changed
+        // so the only thing to do is assume they have
+        if (m_countDashes != 0 || data.m_countDashes != 0)
+            return false;
+
         return (m_style == data.m_style &&
                 m_width == data.m_width &&
                 m_joinStyle == data.m_joinStyle &&