summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk
diff options
context:
space:
mode:
authorsidchat@chromium.org <sidchat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-05 22:01:26 +0000
committersidchat@chromium.org <sidchat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-05 22:01:26 +0000
commitb86c8c142f6b36564b05ebceebaa005761c513ca (patch)
treeb7b65be71114605ac1c927bdc14ae8e6f58e7aaf /chrome/browser/gtk
parent4675fee830843ebb5caf7e5a8e0bbbdf436241f3 (diff)
downloadchromium_src-b86c8c142f6b36564b05ebceebaa005761c513ca.zip
chromium_src-b86c8c142f6b36564b05ebceebaa005761c513ca.tar.gz
chromium_src-b86c8c142f6b36564b05ebceebaa005761c513ca.tar.bz2
Change flag "auto-spell-correct" to "experimental-spellchecker-features". I will be making a series of new features in spellchecking, and will keep all of them under this flag till they become mature enough for default use.
BUG=none TEST=none Review URL: http://codereview.chromium.org/260006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r--chrome/browser/gtk/options/languages_page_gtk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/options/languages_page_gtk.cc b/chrome/browser/gtk/options/languages_page_gtk.cc
index 3c734bd..dfea04a 100644
--- a/chrome/browser/gtk/options/languages_page_gtk.cc
+++ b/chrome/browser/gtk/options/languages_page_gtk.cc
@@ -235,7 +235,7 @@ void LanguagesPageGtk::Init() {
FALSE, FALSE, 0);
const CommandLine& command_line = *CommandLine::ForCurrentProcess();
- if (command_line.HasSwitch(switches::kAutoSpellCorrect)) {
+ if (command_line.HasSwitch(switches::kExperimentalSpellcheckerFeatures)) {
enable_autospellcorrect_checkbox_ = gtk_check_button_new_with_label(
l10n_util::GetStringUTF8(
IDS_OPTIONS_ENABLE_AUTO_SPELL_CORRECTION).c_str());