IdeIntf: Remove FileUtil from default uses list of new applications.

git-svn-id: trunk@56530 -
This commit is contained in:
juha 2017-11-28 23:41:20 +00:00
parent d10aed499e
commit 7f35c413b9

View File

@ -1050,7 +1050,7 @@ end;
function TFileDescPascalUnitWithResource.GetInterfaceUsesSection: string;
begin
Result := inherited GetInterfaceUsesSection + ', FileUtil';
Result := inherited GetInterfaceUsesSection;
if GetResourceType = rtLRS then
Result := Result +', LResources';
end;
@ -1502,9 +1502,8 @@ end;
function TCustomFormDescriptor.GetInterfaceUsesSection: string;
begin
Result := inherited GetInterfaceUsesSection;
Result := Result + ', Controls, Forms,'#13#10 +
' ' + FUnits;
Result := inherited GetInterfaceUsesSection
+ ', Controls, Forms,'#13#10 + ' ' + FUnits;
end;
{ RegisterForm }