]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
Fixed OS/2 compilation problems.
[wxWidgets.git] / include / wx / msw / private.h
index 67bf32de92d5c9069bf642ac266d0876c6eaa7d6..23aaba1766f26b9e2c65bcfbe623a19fa484403b 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));
@@ -391,7 +396,7 @@ private:
 #define GetHfontOf(font)        ((HFONT)(font).GetHFONT())
 
 #define GetHpalette()           ((HPALETTE)GetHPALETTE())
-#define GetHpaletteOf(pal)      ((HPALETTE)(pal)->GetHPALETTE())
+#define GetHpaletteOf(pal)      ((HPALETTE)(pal).GetHPALETTE())
 
 #define GetHrgn()               ((HRGN)GetHRGN())
 #define GetHrgnOf(rgn)          ((HRGN)(rgn).GetHRGN())