summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorThomas Nelson <rider@lindenlab.com>2018-01-23 08:55:58 -0800
committerThomas Nelson <rider@lindenlab.com>2018-01-23 08:55:58 -0800
commit6489598d57571d5b984cb37eec4dd4421ce86c2a (patch)
tree87584ba45f81e0f6877f8eaafce53e821bf924a8 /indra/llui
parent1b8c2b5ebbe0d42f147730bc9b6528fa8c6796ce (diff)
parentd97d7c52068b71bd99b10db046c6a0688b61a254 (diff)
Merged lindenlab/viewer64 into default
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llspellcheck.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/llui/llspellcheck.cpp b/indra/llui/llspellcheck.cpp
index 5a52600337..7f64743e99 100644
--- a/indra/llui/llspellcheck.cpp
+++ b/indra/llui/llspellcheck.cpp
@@ -406,10 +406,7 @@ const std::string LLSpellChecker::getDictionaryAppPath()
const std::string LLSpellChecker::getDictionaryUserPath()
{
std::string dict_path = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, DICT_DIR, "");
- if (!gDirUtilp->fileExists(dict_path))
- {
- LLFile::mkdir(dict_path);
- }
+ LLFile::mkdir(dict_path);
return dict_path;
}