]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/PlatWX.cpp
define WM_CONTEXTMENU if the standard headers don't
[wxWidgets.git] / src / stc / PlatWX.cpp
index 8408f88a72b0cf311b2772b1696ac3cc06a963bc..af915be587990f8d1af5510e1591c659a8631a77 100644 (file)
@@ -6,6 +6,9 @@
 
 #include <ctype.h>
 
+#define Point macPoint  // These names are also defined by some mac headers so
+#define Style macStyle  // change their names, and then undef before we need them
+
 #include <wx/wx.h>
 #include <wx/encconv.h>
 #include <wx/listctrl.h>
 #include <wx/image.h>
 #include <wx/imaglist.h>
 
+#undef Point
+#undef Style
+
 #include "Platform.h"
 #include "PlatWX.h"
 #include "wx/stc/stc.h"
 
 
+
 Point Point::FromLong(long lpoint) {
     return Point(lpoint & 0xFFFF, lpoint >> 16);
 }