]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
wxGTK popup menu positioning fix
[wxWidgets.git] / include / wx / msw / private.h
index dffa2e32af48345ae57535a70be25f0159841b76..d643ce0773b0b33d07dd95450e5fcffbec236cef 100644 (file)
@@ -204,7 +204,7 @@ extern LONG APIENTRY _EXPORT
 // make conversion from wxColour and COLORREF a bit less painful
 inline COLORREF wxColourToRGB(const wxColour& c)
 {
-    return RGB(c.Red(), c.Green(), c.Blue());
+    return PALETTERGB(c.Red(), c.Green(), c.Blue());
 }
 
 inline void wxRGBToColour(wxColour& c, COLORREF rgb)