diff options
author | Vlad Voicu <vladv@rosedu.org> | 2012-03-04 14:30:51 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-03-09 15:04:06 (GMT) |
commit | 424d19ec5f9c7ab6ca28a532540d140a22fafeb9 (patch) | |
tree | b95864555d98c39bf8ee1fcd540bb2eaaccaba2a /Swift/Controllers | |
parent | 1c8cd160b79b6bbcec72042bdb104ba530508a93 (diff) | |
download | swift-contrib-424d19ec5f9c7ab6ca28a532540d140a22fafeb9.zip swift-contrib-424d19ec5f9c7ab6ca28a532540d140a22fafeb9.tar.bz2 |
Added minimal SpellChecker Ui Options
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/SettingConstants.cpp | 1 | ||||
-rw-r--r-- | Swift/Controllers/SettingConstants.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Swift/Controllers/SettingConstants.cpp b/Swift/Controllers/SettingConstants.cpp index 7ab4ac4..3180b6a 100644 --- a/Swift/Controllers/SettingConstants.cpp +++ b/Swift/Controllers/SettingConstants.cpp @@ -19,4 +19,5 @@ const SettingsProvider::Setting<bool> SettingConstants::LOGIN_AUTOMATICALLY = Se const SettingsProvider::Setting<bool> SettingConstants::SHOW_OFFLINE("showOffline", false); const SettingsProvider::Setting<std::string> SettingConstants::EXPANDED_ROSTER_GROUPS("GroupExpandiness", ""); const SettingsProvider::Setting<bool> SettingConstants::PLAY_SOUNDS("playSounds", true); +const SettingsProvider::Setting<bool> SettingConstants::SPELL_CHECKER("spellChecker", false); } diff --git a/Swift/Controllers/SettingConstants.h b/Swift/Controllers/SettingConstants.h index ff1ed72..4c354f2 100644 --- a/Swift/Controllers/SettingConstants.h +++ b/Swift/Controllers/SettingConstants.h @@ -22,5 +22,6 @@ namespace Swift { static const SettingsProvider::Setting<bool> SHOW_OFFLINE; static const SettingsProvider::Setting<std::string> EXPANDED_ROSTER_GROUPS; static const SettingsProvider::Setting<bool> PLAY_SOUNDS; + static const SettingsProvider::Setting<bool> SPELL_CHECKER; }; } |