From b543d3217da50709a9335dc7a1dd5e955c535973 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 20 Aug 2015 13:14:14 -0400 Subject: [PATCH] Windows: Fix incorrect usage of MAKEINTRESOURCE (issue #1692) --- libcef/browser/browser_host_impl_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcef/browser/browser_host_impl_win.cc b/libcef/browser/browser_host_impl_win.cc index 1c77f188d..9867d9cff 100644 --- a/libcef/browser/browser_host_impl_win.cc +++ b/libcef/browser/browser_host_impl_win.cc @@ -638,7 +638,7 @@ LPCWSTR ToCursorID(WebCursorInfo::Type type) { case WebCursorInfo::TypeCell: return MAKEINTRESOURCE(IDC_CELL); case WebCursorInfo::TypeContextMenu: - return MAKEINTRESOURCE(IDC_ARROW); + return IDC_ARROW; case WebCursorInfo::TypeAlias: return MAKEINTRESOURCE(IDC_ALIAS); case WebCursorInfo::TypeProgress: