diff options
author | hamaji@chromium.org <hamaji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 21:09:51 +0000 |
---|---|---|
committer | hamaji@chromium.org <hamaji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 21:09:51 +0000 |
commit | 382f67951c8586c41ce163385042fca10d824046 (patch) | |
tree | f679b2243b25cecc4533626ea3a589dfeef18871 /views | |
parent | ac294a61fa2480b764d2b28edb02935cf3cbbb5f (diff) | |
download | chromium_src-382f67951c8586c41ce163385042fca10d824046.zip chromium_src-382f67951c8586c41ce163385042fca10d824046.tar.gz chromium_src-382f67951c8586c41ce163385042fca10d824046.tar.bz2 |
Fix a trivial typo: key for copy is 'c', not 'v'.
Review URL: http://codereview.chromium.org/115253
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15896 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r-- | views/controls/text_field.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/text_field.cc b/views/controls/text_field.cc index 3c587dc..0395af3 100644 --- a/views/controls/text_field.cc +++ b/views/controls/text_field.cc @@ -531,7 +531,7 @@ void TextField::Edit::OnKeyDown(TCHAR key, UINT repeat_count, UINT flags) { // Cut: Shift-Delete and Ctrl-x are treated as cut. Ctrl-Shift-Delete and // Ctrl-Shift-x are not treated as cut even though the underlying // CRichTextEdit would treat them as such. - // Copy: Ctrl-v is treated as copy. Shift-Ctrl-v is not. + // Copy: Ctrl-c is treated as copy. Shift-Ctrl-c is not. // Paste: Shift-Insert and Ctrl-v are tread as paste. Ctrl-Shift-Insert and // Ctrl-Shift-v are not. // |