]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/image.h
1. wxMotif fixes for compilation in "no compatible" mode
[wxWidgets.git] / include / wx / image.h
index efd5feb55b7ae2c8c7a5eb7bb003655bdde903cf..b22b46cd071048673c95c99ad6389eea8451cfd8 100644 (file)
@@ -159,7 +159,11 @@ public:
   bool HasMask() const;
 
   inline wxImage& operator = (const wxImage& image)
-    { if (*this == image) return (*this); Ref(image); return *this; }
+    { if ((*this) == image)
+          return (*this);
+      Ref(image);
+      return *this; }
+
   inline bool operator == (const wxImage& image)
     { return m_refData == image.m_refData; }
   inline bool operator != (const wxImage& image)