mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 18:58:04 +02:00
Converter: Cleanup. Get rid of an excess variable.
git-svn-id: trunk@41959 -
This commit is contained in:
parent
fe709952b5
commit
0c732a1c4c
@ -6306,8 +6306,7 @@ begin
|
||||
if not InsertAllNewClassParts then
|
||||
RaiseException(ctsErrorDuringInsertingNewClassParts);
|
||||
// insert all missing proc bodies
|
||||
if AddMissingProcBodies
|
||||
and (not CreateMissingClassProcBodies(true)) then
|
||||
if AddMissingProcBodies and (not CreateMissingClassProcBodies(true)) then
|
||||
RaiseException(ctsErrorDuringCreationOfNewProcBodies);
|
||||
// apply the changes
|
||||
if not CodeCompleteSrcChgCache.Apply then
|
||||
|
@ -275,12 +275,12 @@ var
|
||||
|
||||
procedure InitClassCompletion;
|
||||
begin
|
||||
with fCTLink.CodeTool do begin
|
||||
CodeCompleteClassNode:=FindClassNodeInInterface(TLFMObjectNode(fLFMTree.Root).TypeName,
|
||||
true,false,true);
|
||||
CodeCompleteSrcChgCache:=fCTLink.SrcCache;
|
||||
//BuildTree(lsrImplementationStart);
|
||||
end;
|
||||
with fCTLink.CodeTool do
|
||||
if not Assigned(CodeCompleteClassNode) then begin // Do only at first time.
|
||||
CodeCompleteClassNode:=FindClassNodeInInterface(
|
||||
TLFMObjectNode(fLFMTree.Root).TypeName,true,false,true);
|
||||
CodeCompleteSrcChgCache:=fCTLink.SrcCache;
|
||||
end;
|
||||
end;
|
||||
|
||||
var
|
||||
@ -294,11 +294,10 @@ var
|
||||
ChgEntryRepl: TObjectList;
|
||||
OldIdent, NewIdent: string;
|
||||
StartPos, EndPos: integer;
|
||||
HasCodeChanges: Boolean;
|
||||
begin
|
||||
Result:=mrOK;
|
||||
AutoInc:=0;
|
||||
HasCodeChanges:=False;
|
||||
fCTLink.CodeTool.CodeCompleteClassNode:=Nil;
|
||||
ChgEntryRepl:=TObjectList.Create;
|
||||
PropReplacements:=TStringToStringTree.Create(false);
|
||||
TypeReplacements:=TStringToStringTree.Create(false);
|
||||
@ -314,13 +313,11 @@ begin
|
||||
begin
|
||||
if CurError.ErrorType=lfmeIdentifierMissingInCode then
|
||||
begin
|
||||
// Missing component variable
|
||||
// Missing component variable, must be added to pascal sources
|
||||
ObjNode:=CurError.Node as TLFMObjectNode;
|
||||
if not HasCodeChanges then
|
||||
InitClassCompletion;
|
||||
InitClassCompletion;
|
||||
fCTLink.CodeTool.AddClassInsertion(UpperCase(ObjNode.Name),
|
||||
ObjNode.Name+':'+ObjNode.TypeName+';',ObjNode.Name, ncpPublishedVars);
|
||||
HasCodeChanges:=True;
|
||||
end
|
||||
else if IsMissingType(CurError) then
|
||||
begin
|
||||
@ -362,9 +359,11 @@ begin
|
||||
// Apply replacements to LFM.
|
||||
if not ApplyReplacements(ChgEntryRepl) then
|
||||
exit(mrCancel);
|
||||
if HasCodeChanges then
|
||||
if not fCTLink.CodeTool.ApplyClassCompletion(false) then
|
||||
exit(mrCancel);
|
||||
// Apply added variables to pascal class definition.
|
||||
with fCTLink.CodeTool do
|
||||
if Assigned(CodeCompleteClassNode) then
|
||||
if not ApplyClassCompletion(false) then
|
||||
exit(mrCancel);
|
||||
// Apply replacement types also to pascal source.
|
||||
if TypeReplacements.Tree.Count>0 then
|
||||
if not CodeToolBoss.RetypeClassVariables(fPascalBuffer,
|
||||
|
Loading…
Reference in New Issue
Block a user