]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/region.h
1. some minor compilation fixes in datetime.cppm
[wxWidgets.git] / include / wx / msw / region.h
index 4be8411eb56ae1cac1a3060e4f04b1f5c04b23c7..4349debda6ec2468dffdbf23d4704ff4f4b80a38 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "wx/list.h"
 #include "wx/gdiobj.h"
 
 #include "wx/list.h"
 #include "wx/gdiobj.h"
+#include "wx/gdicmn.h"
 
 class WXDLLEXPORT wxRect;
 class WXDLLEXPORT wxPoint;
 
 class WXDLLEXPORT wxRect;
 class WXDLLEXPORT wxPoint;
@@ -116,8 +117,11 @@ public:
        void Reset(void) { m_current = 0; }
        void Reset(const wxRegion& region);
 
        void Reset(void) { m_current = 0; }
        void Reset(const wxRegion& region);
 
-       operator bool (void) const { return m_current < m_numRects; }
-       bool HaveRects(void) const { return m_current < m_numRects; }
+#ifndef __SALFORDC__
+       operator bool (void) const { return (m_current < m_numRects); }
+#endif
+
+       bool HaveRects(void) const { return (m_current < m_numRects); }
 
        void operator ++ (void);
        void operator ++ (int);
 
        void operator ++ (void);
        void operator ++ (int);