diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/views/about_chrome_view.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/about_chrome_view.cc b/chrome/browser/views/about_chrome_view.cc index 8cfa84f..df605ab 100644 --- a/chrome/browser/views/about_chrome_view.cc +++ b/chrome/browser/views/about_chrome_view.cc @@ -768,7 +768,8 @@ void AboutChromeView::UpdateStatus(GoogleUpdateUpgradeResult result, l10n_util::GetString(IDS_PRODUCT_NAME), current_version_); if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) { - update_label_text.push_back(static_cast<wchar_t>(l10n_util::kLeftToRightMark)); + update_label_text.push_back( + static_cast<wchar_t>(l10n_util::kLeftToRightMark)); } update_label_.SetText(update_label_text); show_success_indicator = true; |