]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
added QS_ALLPOSTMESSAGE
[wxWidgets.git] / include / wx / msw / private.h
index 5fe1bbfbef6d082f4283bfe2688af48373c4f415..ab9b6714555a4d4f6f7f95ff166be15e00be3c98 100644 (file)
@@ -206,6 +206,11 @@ extern LONG APIENTRY _EXPORT
 
 // make conversion from wxColour and COLORREF a bit less painful
 inline COLORREF wxColourToRGB(const wxColour& c)
 
 // make conversion from wxColour and COLORREF a bit less painful
 inline COLORREF wxColourToRGB(const wxColour& c)
+{
+    return RGB(c.Red(), c.Green(), c.Blue());
+}
+
+inline COLORREF wxColourToPalRGB(const wxColour& c)
 {
     return PALETTERGB(c.Red(), c.Green(), c.Blue());
 }
 {
     return PALETTERGB(c.Red(), c.Green(), c.Blue());
 }