diff options
author | dimich@google.com <dimich@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-31 00:06:43 +0000 |
---|---|---|
committer | dimich@google.com <dimich@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-31 00:06:43 +0000 |
commit | f86cdcc5174e672ce40f229c2a0a3f75c250db18 (patch) | |
tree | fe5b23906656e6e92fd3c48cd5782350a137a34f /webkit/glue/webcursor.h | |
parent | 4560c015bd0816198a8a88b90cbfb029b310ac8a (diff) | |
download | chromium_src-f86cdcc5174e672ce40f229c2a0a3f75c250db18.zip chromium_src-f86cdcc5174e672ce40f229c2a0a3f75c250db18.tar.gz chromium_src-f86cdcc5174e672ce40f229c2a0a3f75c250db18.tar.bz2 |
Fix a tiny error in WebCursor.set_hotspot()
Review URL: http://codereview.chromium.org/8928
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webcursor.h')
-rw-r--r-- | webkit/glue/webcursor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/webcursor.h b/webkit/glue/webcursor.h index 55281db..6f555fd 100644 --- a/webkit/glue/webcursor.h +++ b/webkit/glue/webcursor.h @@ -93,7 +93,7 @@ public: void set_hotspot(int hotspot_x, int hotspot_y) { hotspot_x_ = hotspot_x; - hotspot_y_ = hotspot_x; + hotspot_y_ = hotspot_y; } #if defined(OS_WIN) |