]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
Various fixes for X11 compilation
[wxWidgets.git] / include / wx / msw / private.h
index 67bf32de92d5c9069bf642ac266d0876c6eaa7d6..14f3b2a2eaa23277a3f84ce6ae20e162a5eafbb1 100644 (file)
@@ -207,6 +207,11 @@ inline COLORREF wxColourToRGB(const wxColour& c)
     return PALETTERGB(c.Red(), c.Green(), c.Blue());
 }
 
+inline wxColour wxRGBToColour(COLORREF rgb)
+{
+    return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
+}
+
 inline void wxRGBToColour(wxColour& c, COLORREF rgb)
 {
     c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));