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

Side by Side Diff: chrome/browser/views/options/languages_page_view.cc

Issue 192029: UI language list fix for the branch. (the trunk patch - essentially identical... (Closed) Base URL: svn://chrome-svn/chrome/branches/195/src/
Patch Set: Created 11 years, 3 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « app/l10n_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #include <windows.h> 4 #include <windows.h>
5 #include <shlobj.h> 5 #include <shlobj.h>
6 #include <vsstyle.h> 6 #include <vsstyle.h>
7 #include <vssym32.h> 7 #include <vssym32.h>
8 8
9 #include "chrome/browser/views/options/languages_page_view.h" 9 #include "chrome/browser/views/options/languages_page_view.h"
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 "fr", // French 81 "fr", // French
82 "fr-CA", // French (Canada) 82 "fr-CA", // French (Canada)
83 "fr-CH", // French (Switzerland) 83 "fr-CH", // French (Switzerland)
84 "fr-FR", // French (France) 84 "fr-FR", // French (France)
85 "fy", // Frisian 85 "fy", // Frisian
86 "ga", // Irish 86 "ga", // Irish
87 "gd", // Scots Gaelic 87 "gd", // Scots Gaelic
88 "gl", // Galician 88 "gl", // Galician
89 "gn", // Guarani 89 "gn", // Guarani
90 "gu", // Gujarati 90 "gu", // Gujarati
91 "haw", // Hawaiian
91 "he", // Hebrew 92 "he", // Hebrew
92 "hi", // Hindi 93 "hi", // Hindi
93 "hr", // Croatian 94 "hr", // Croatian
94 "hu", // Hungarian 95 "hu", // Hungarian
95 "hy", // Armenian 96 "hy", // Armenian
96 "ia", // Interlingua 97 "ia", // Interlingua
97 "id", // Indonesian 98 "id", // Indonesian
98 "is", // Icelandic 99 "is", // Icelandic
99 "it", // Italian 100 "it", // Italian
100 "it-CH", // Italian (Switzerland) 101 "it-CH", // Italian (Switzerland)
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 } 874 }
874 875
875 if (enable_spellcheck_checkbox_clicked_) 876 if (enable_spellcheck_checkbox_clicked_)
876 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked()); 877 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked());
877 878
878 if (enable_autospellcorrect_checkbox_clicked_) { 879 if (enable_autospellcorrect_checkbox_clicked_) {
879 enable_autospellcorrect_.SetValue( 880 enable_autospellcorrect_.SetValue(
880 enable_autospellcorrect_checkbox_->checked()); 881 enable_autospellcorrect_checkbox_->checked());
881 } 882 }
882 } 883 }
OLDNEW
« no previous file with comments | « app/l10n_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698