diff options
author | hbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-11 06:36:29 +0000 |
---|---|---|
committer | hbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-11 06:36:29 +0000 |
commit | bab9cd6497d8f485f2d78f1f5964456ba695fb04 (patch) | |
tree | 89237e51d4a965e7e332ecd004d577023a992ce6 /chrome/app/chrome_command_ids.h | |
parent | 240005f7d5c37274d9423cd2d6d4c651b70c5db9 (diff) | |
download | chromium_src-bab9cd6497d8f485f2d78f1f5964456ba695fb04.zip chromium_src-bab9cd6497d8f485f2d78f1f5964456ba695fb04.tar.gz chromium_src-bab9cd6497d8f485f2d78f1f5964456ba695fb04.tar.bz2 |
Fix a contextual typo and a confusing resource ID used by the spellchecker menu.
This change fixes a contexual typo 'Spell-checker Options' with 'Spell-checker options' on Windows and Linux. Also it replaces IDC_CHECK_SPELLING_OF_THIS_FIELD with IDC_CHECK_SPELLING_WHILE_TYPING for compatibility with Safari. (This option enables or disables spell-checking globally as Safari does, not enables or disables spell-checking in the selected text field.)
BUG=131724,131712
TEST=manual
Review URL: https://chromiumcodereview.appspot.com/10544067
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141390 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_command_ids.h')
-rw-r--r-- | chrome/app/chrome_command_ids.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/app/chrome_command_ids.h b/chrome/app/chrome_command_ids.h index 315d7e7..d9a9982 100644 --- a/chrome/app/chrome_command_ids.h +++ b/chrome/app/chrome_command_ids.h @@ -191,7 +191,7 @@ // [_FIRST, _LAST). #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 -#define IDC_CHECK_SPELLING_OF_THIS_FIELD 41107 +#define IDC_CHECK_SPELLING_WHILE_TYPING 41107 #define IDC_SPELLPANEL_TOGGLE 41109 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 |