From 259851ad64e507055969199c4e0731a1af4cc3f7 Mon Sep 17 00:00:00 2001 From: Ivan Tkachenko Date: Tue, 24 Aug 2021 16:10:28 +0300 Subject: Remove space before end-of-sentence dot in debug output It may get quite annoying when showing up each time an application starts up on developer machine, which in my case was too often enough to get irritated to the point where I just spend time actually fixing it. Grammar was messed up in ae8c8fdf92df18849376b943955063b5d5723454, it used to spell: > "... for the" << locale << "language. Search paths" ... So, it made sense before removal of the "language" word. Change-Id: I2c0c51e4f14c4a7eb7001fe9cc074f8b43e89f26 Pick-to: 6.2 Reviewed-by: Jarkko Koivikko --- src/plugins/hunspell/hunspellinputmethod/hunspellworker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/plugins/hunspell/hunspellinputmethod/hunspellworker.cpp b/src/plugins/hunspell/hunspellinputmethod/hunspellworker.cpp index e97e3415..51926eec 100644 --- a/src/plugins/hunspell/hunspellinputmethod/hunspellworker.cpp +++ b/src/plugins/hunspell/hunspellinputmethod/hunspellworker.cpp @@ -390,7 +390,7 @@ void HunspellLoadDictionaryTask::run() } } } else { - qCWarning(lcHunspell) << "Hunspell dictionary is missing for" << locale << ". Search paths" << searchPaths; + qCWarning(lcHunspell).nospace() << "Hunspell dictionary is missing for " << locale << ". Search paths " << searchPaths; } emit completed(*hunspellPtr != nullptr); -- cgit v1.2.3