소스 검색

* fixed TTable.InsertText as suggested by Jonas

git-svn-id: trunk@4460 -
florian 19 년 전
부모
커밋
10f1762ae6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ide/whtmlhlp.pas

+ 1 - 1
ide/whtmlhlp.pas

@@ -281,7 +281,7 @@ procedure TTable.TextInsert(Pos : sw_word;const S : string);
 var
   i : sw_word;
 begin
-  i:=Renderer^.AddTextAt(S[i],Pos+GlobalOffset);
+  i:=Renderer^.AddTextAt(S,Pos+GlobalOffset);
   GlobalOffset:=GlobalOffset+i;
 end;