From 7b652117d6c956edd17f84d7d22a96419e7eccdc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20Ridderstr=C3=B6m?= Date: Sun, 30 Jul 2017 09:30:58 +0200 Subject: [PATCH] Fix editorial whitespace error Fix a non-controversial editorial whitespace error in order to verify that the commit has the correct e-mail address and that it appears on the list. --- src/AppleSpellChecker.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/AppleSpellChecker.cpp b/src/AppleSpellChecker.cpp index f5bfe23143..3ba1250b2d 100644 --- a/src/AppleSpellChecker.cpp +++ b/src/AppleSpellChecker.cpp @@ -37,7 +37,6 @@ struct AppleSpellChecker::Private /// language map map languageMap; - }; @@ -107,7 +106,7 @@ void AppleSpellChecker::insert(WordLangTuple const & word) { string const word_str = to_utf8(word.word()); AppleSpeller_learn(d->speller, word_str.c_str()); - LYXERR(Debug::GUI, "learn word: \"" << word.word() << "\"") ; + LYXERR(Debug::GUI, "learn word: \"" << word.word() << "\""); advanceChangeNumber(); } @@ -117,7 +116,7 @@ void AppleSpellChecker::remove(WordLangTuple const & word) { string const word_str = to_utf8(word.word()); AppleSpeller_unlearn(d->speller, word_str.c_str()); - LYXERR(Debug::GUI, "unlearn word: \"" << word.word() << "\"") ; + LYXERR(Debug::GUI, "unlearn word: \"" << word.word() << "\""); advanceChangeNumber(); } @@ -127,7 +126,7 @@ void AppleSpellChecker::accept(WordLangTuple const & word) { string const word_str = to_utf8(word.word()); AppleSpeller_ignore(d->speller, word_str.c_str()); - LYXERR(Debug::GUI, "ignore word: \"" << word.word() << "\"") ; + LYXERR(Debug::GUI, "ignore word: \"" << word.word() << "\""); advanceChangeNumber(); } @@ -155,15 +154,15 @@ bool AppleSpellChecker::hasDictionary(Language const * lang) const if (result) return result; - result = AppleSpeller_hasLanguage(d->speller,lang->code().c_str()); + result = AppleSpeller_hasLanguage(d->speller, lang->code().c_str()); if (result) { d->languageMap[lang->lang()] = lang->code(); } else { - result = AppleSpeller_hasLanguage(d->speller,lang->lang().c_str()); + result = AppleSpeller_hasLanguage(d->speller, lang->lang().c_str()); if (result) d->languageMap[lang->lang()] = lang->lang(); } - LYXERR(Debug::GUI, "has dictionary: " << lang->lang() << " = " << result) ; + LYXERR(Debug::GUI, "has dictionary: " << lang->lang() << " = " << result); return result; } -- 2.39.5