|
lazarus 1.0.10 安装 kol-ce-2.80.3 成功 修改内容如下:
只是安装成功使用怎么样还没有测试!安装成功的顶一个啊
GetLookupRootForComponent 的问题在PropEditUtils.pas. 文件里
和mckToolbarEditor.pas in line 23增加 Buttons, PropEdits, PropEditUtils
和 mckMenuEditor.pas in line 23增加 PropEdits, PropEditUtils
mirror 单元 SourceEditorWindow 改 SourceEditorManagerIntf
3776 行
直接改函数
function GetSourceEditorInterface(const Path: String): TSourceEditorInterface;
var
i: longint;
begin
if SourceEditorManagerIntf <> nil then begin
for i:=0 to SourceEditorManagerIntf.SourceWindowCount - 1 do
//if AnsiCompareText(SourceEditorManagerIntf.SourceEditors.GetProjectFile.Filename, Path) = 0 then begin
if AnsiCompareText(SourceEditorManagerIntf.SourceEditors.GetProjectFile.Filename, Path) = 0 then begin
Result:=SourceEditorManagerIntf.SourceEditors;
exit;
end;
end;
Result:=nil;
end;
15687行左右改
//S := SourceEditorWindow.ActiveEditor.FileName;
S := SourceEditorManagerIntf.ActiveEditor.FileName;
|
|