]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/brush.cpp
don't just drop click events resulting from triple clicks
[wxWidgets.git] / src / msw / brush.cpp
index f1109f4633f645a716f062dfa698dd05ac407640..5f497f119c28b409fd9a7aefed4b8b22e6179336 100644 (file)
@@ -13,7 +13,7 @@
 // declarations
 // ============================================================================
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "brush.h"
 #endif
 
@@ -248,7 +248,7 @@ wxBrush::~wxBrush()
 
 wxBrush& wxBrush::operator=(const wxBrush& brush)
 {
-    if ( *this != brush )
+    if ( this != &brush )
     {
         Ref(brush);
     }