Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1146)

Unified Diff: chrome/browser/chromeos/login/network_selection_view.cc

Issue 5990008: Remove wstring from l10n_util. Part 1.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/network_selection_view.cc
===================================================================
--- chrome/browser/chromeos/login/network_selection_view.cc (revision 70069)
+++ chrome/browser/chromeos/login/network_selection_view.cc (working copy)
@@ -331,9 +331,9 @@
void NetworkSelectionView::UpdateLocalizedStrings() {
languages_menubutton_->SetText(
- delegate_->language_switch_menu()->GetCurrentLocaleName());
+ UTF16ToWide(delegate_->language_switch_menu()->GetCurrentLocaleName()));
keyboards_menubutton_->SetText(
- delegate_->keyboard_switch_menu()->GetCurrentKeyboardName());
+ UTF16ToWide(delegate_->keyboard_switch_menu()->GetCurrentKeyboardName()));
welcome_label_->SetText(l10n_util::GetString(IDS_NETWORK_SELECTION_TITLE));
select_language_label_->SetText(
l10n_util::GetString(IDS_LANGUAGE_SELECTION_SELECT));

Powered by Google App Engine
This is Rietveld 408576698