include/basic/sbxvar.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 7dd087002816cdde9a5049a36840446765061fb8 Author: Stephan Bergmann <[email protected]> AuthorDate: Fri Mar 18 08:43:49 2022 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Fri Mar 18 10:30:56 2022 +0100 Improve a mis-translated comment ...which was the German // Falls wir ein Schweinezeichen haben, abbrechen!! until 3d361dbc2d69484657c42852dcfa426c00bc3175 "Translation of Comments to English" Change-Id: I655514ec38596d16b15d22a02f38d0cf60b80302 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131726 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/include/basic/sbxvar.hxx b/include/basic/sbxvar.hxx index 6454e445629f..1f1ac8a8c4fc 100644 --- a/include/basic/sbxvar.hxx +++ b/include/basic/sbxvar.hxx @@ -308,7 +308,7 @@ public: const auto first6 = aName.substr(0, 6); for (const auto& c : first6) { - // If we have a comment sign break!! + // If we have a filthy non-ASCII character, break!! if (c >= 0x80) return 0; n = static_cast<sal_uInt16>((n << 3) + rtl::toAsciiUpperCase(c));
