Windows: Fix incorrect usage of MAKEINTRESOURCE (issue #1692)
This commit is contained in:
parent
f4e579f1e8
commit
b543d3217d
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue