summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndreas Heinisch <andreas.heinisch@yahoo.de>2022-12-25 18:19:09 +0100
committerAndreas Heinisch <andreas.heinisch@yahoo.de>2022-12-25 19:41:05 +0000
commite431417aa67d4b31f57e9d751b63e8e8cf002567 (patch)
treee8c46f42bfdb0166bb6b964f9f27d14ed7c6eb92 /basic
parent6fb682487e355933d79a8ef74560ecf318b4f705 (diff)
Fixed a copy paste error in a comment
Change-Id: Ibcd4c2f0cccb233647f3b079f02d01f156d30138 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144818 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/comp/scanner.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx
index b5a923969bfd..45b65a29b129 100644
--- a/basic/source/comp/scanner.cxx
+++ b/basic/source/comp/scanner.cxx
@@ -668,7 +668,7 @@ PrevLineCommentLbl:
bPrevLineExtentsComment = false;
aSym = "REM";
sal_Int32 nLen = aLine.getLength() - nLineIdx;
- // tdf#149402 - don't extend comment if line ends in a whitespace (asicCharClass::isWhitespace)
+ // tdf#149402 - don't extend comment if line ends in a whitespace (BasicCharClass::isWhitespace)
if (bCompatible && !bLineEndsWithWhitespace && aLine[nLineIdx + nLen - 1] == '_'
&& aLine[nLineIdx + nLen - 2] == ' ')
bPrevLineExtentsComment = true;