20000121-14:00 GMT+1 Ignacio Ortiz <ignacio@fivetech.com>

This commit is contained in:
Ignacio Ortiz de Zuniga
2000-01-21 12:59:38 +00:00
parent 625dc3cad7
commit 2f94f920ad

View File

@@ -669,6 +669,10 @@ METHOD WordLeft() CLASS TGet
nPos--
Enddo
if nPos < 1
nPos := 1
endif
if nPos > 0
::Pos := nPos
endif
@@ -708,6 +712,10 @@ METHOD WordRight() CLASS TGet
nPos++
Enddo
if nPos > ::nMaxLen
nPos := ::nMaxLen
endif
if nPos <= ::nMaxLen
::Pos := nPos
endif