From 3a2fc1595b316e0847d25b0604ec9188d953af01 Mon Sep 17 00:00:00 2001 From: Stephan Witt Date: Tue, 10 May 2016 18:06:48 +0200 Subject: [PATCH] Correct path names were to look for RPM based dictionaries for hunspell on Linux. --- src/HunspellChecker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HunspellChecker.cpp b/src/HunspellChecker.cpp index 5c179762ac..ec5466f300 100644 --- a/src/HunspellChecker.cpp +++ b/src/HunspellChecker.cpp @@ -155,9 +155,9 @@ const string HunspellChecker::Private::dictPath(int selector) { switch (selector) { case 4: - return addName(hunspellPackageDictDirectory(),dictDirectory()); + return hunspellPackageDictDirectory(); case 3: - return addName(myspellPackageDictDirectory(),dictDirectory()); + return myspellPackageDictDirectory(); case 2: return addName(package().system_support().absFileName(),dictDirectory()); case 1: -- 2.39.5