Fix CefContextMenuParamsImpl::GetYCoord() to return the correct value (issue #602).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@642 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2012-05-22 21:10:00 +00:00
parent a3cc27784c
commit 19e96f94fe
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ int CefContextMenuParamsImpl::GetXCoord() {
int CefContextMenuParamsImpl::GetYCoord() {
CEF_VALUE_VERIFY_RETURN(false, 0);
return const_value().x;
return const_value().y;
}
CefContextMenuParamsImpl::TypeFlags CefContextMenuParamsImpl::GetTypeFlags() {