瀏覽代碼

* 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;