diff options
Diffstat (limited to 'basic/source/runtime')
-rw-r--r-- | basic/source/runtime/iosys.cxx | 2 | ||||
-rw-r--r-- | basic/source/runtime/runtime.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index 09c97638c44d..396d95b449b6 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -735,7 +735,7 @@ SbError SbiStream::Write( const OString& rBuf, sal_uInt16 n ) { aLine = aLine + rBuf; // Get it out, if the end is an LF, but strip CRLF before, - // because the SvStrm adds a CRLF! + // because the SvStream adds a CRLF! sal_Int32 nLineLen = aLine.getLength(); if (nLineLen && aLine[--nLineLen] == 0x0A) { diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index e71fe1352ada..ad53e4cad6b7 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -2842,7 +2842,7 @@ void SbiRuntime::StepLOADI( sal_uInt32 nOp1 ) PushVar( p ); } -// stora a named argument in Argv (+Arg-no. from 1!) +// store a named argument in Argv (+Arg-no. from 1!) void SbiRuntime::StepARGN( sal_uInt32 nOp1 ) { |