]> 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 11f787bd324d12392c91d48f3c38e350227e877e..176463b69d23c99b9eac083718478332a91f1afd 100644 (file)
@@ -13,6 +13,7 @@
 #endif
 
 #include "wx/pen.h"
+#include "wx/colour.h"
 
 #include <gdk/gdk.h>
 
@@ -51,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 &&