Windows: Fix incorrect usage of MAKEINTRESOURCE (issue #1692)

This commit is contained in:
Marshall Greenblatt 2015-08-20 13:14:14 -04:00
parent f4e579f1e8
commit b543d3217d
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ LPCWSTR ToCursorID(WebCursorInfo::Type type) {
case WebCursorInfo::TypeCell: case WebCursorInfo::TypeCell:
return MAKEINTRESOURCE(IDC_CELL); return MAKEINTRESOURCE(IDC_CELL);
case WebCursorInfo::TypeContextMenu: case WebCursorInfo::TypeContextMenu:
return MAKEINTRESOURCE(IDC_ARROW); return IDC_ARROW;
case WebCursorInfo::TypeAlias: case WebCursorInfo::TypeAlias:
return MAKEINTRESOURCE(IDC_ALIAS); return MAKEINTRESOURCE(IDC_ALIAS);
case WebCursorInfo::TypeProgress: case WebCursorInfo::TypeProgress: