1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-25 10:42:20 -05:00

Fixed issue with CodeHints

This commit is contained in:
Raymond 2010-04-07 16:48:56 +02:00
parent 8038ebe39a
commit bc954e095d

View File

@ -587,7 +587,7 @@ begin;
exit; exit;
if EndPos.y = beginpos.y then if EndPos.y = beginpos.y then
begin begin
result := copy(strings[beginpos.y],beginpos.x, endpos.x - beginpos.x + 1); result := copy(strings[beginpos.y],beginpos.x, endpos.x - beginpos.x);
exit; exit;
end; end;
result := copy(strings[beginpos.y],beginpos.x, length(strings[beginpos.y]) - beginpos.x + 1); result := copy(strings[beginpos.y],beginpos.x, length(strings[beginpos.y]) - beginpos.x + 1);