| Index: ui/base/accelerators/accelerator.cc
|
| diff --git a/ui/base/accelerators/accelerator.cc b/ui/base/accelerators/accelerator.cc
|
| index 18317cab78d2eecbc7067fdcaf82ea61cd51d4c7..a05e18534136e16094370224baf12cd7a8d8f6fc 100644
|
| --- a/ui/base/accelerators/accelerator.cc
|
| +++ b/ui/base/accelerators/accelerator.cc
|
| @@ -228,7 +228,7 @@ base::string16 Accelerator::GetShortcutText() const {
|
| base::string16 shortcut_rtl;
|
| bool adjust_shortcut_for_rtl = false;
|
| if (base::i18n::IsRTL() && shortcut.length() == 1 &&
|
| - !IsAsciiAlpha(shortcut[0]) && !IsAsciiDigit(shortcut[0])) {
|
| + !base::IsAsciiAlpha(shortcut[0]) && !base::IsAsciiDigit(shortcut[0])) {
|
| adjust_shortcut_for_rtl = true;
|
| shortcut_rtl.assign(shortcut);
|
| }
|
|
|