From 83483b73e8588064f44edb76a070c9a607e75108 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 3 Jan 2014 21:44:55 +0000 Subject: [PATCH] Mac: Fix rendering of the background color (issue #1161) git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1547@1555 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- include/internal/cef_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index 60235e20b..41a2d578f 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -99,7 +99,7 @@ typedef uint32 cef_color_t; // Return an cef_color_t value with the specified byte component values. #define CefColorSetARGB(a, r, g, b) \ - static_cast( \ + static_cast( \ (static_cast(a) << 24) | \ (static_cast(r) << 16) | \ (static_cast(g) << 8) | \