basic/source/comp/scanner.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e431417aa67d4b31f57e9d751b63e8e8cf002567
Author:     Andreas Heinisch <andreas.heini...@yahoo.de>
AuthorDate: Sun Dec 25 18:19:09 2022 +0100
Commit:     Andreas Heinisch <andreas.heini...@yahoo.de>
CommitDate: Sun Dec 25 19:41:05 2022 +0000

    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.heini...@yahoo.de>

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;

Reply via email to