aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIvan Tkachenko <me@ratijas.tk>2021-08-24 16:10:28 +0300
committerIvan Tkachenko <me@ratijas.tk>2021-08-25 09:23:55 +0000
commit259851ad64e507055969199c4e0731a1af4cc3f7 (patch)
treee0d31e0250189a39691f95d39a8d152428423da8 /src
parenta8b5d3c02eb55fe10e3e051acff5c42b404ff66d (diff)
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 <jarkko.koivikko@code-q.fi>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/hunspell/hunspellinputmethod/hunspellworker.cpp2
1 files changed, 1 insertions, 1 deletions
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);