IDE: comment, clean up

git-svn-id: trunk@36045 -
This commit is contained in:
mattias 2012-03-15 22:19:05 +00:00
parent 92d092cc3d
commit a6537c8ebe
2 changed files with 4 additions and 8 deletions

View File

@ -346,7 +346,6 @@ type
procedure Save(OnlyDesktop:boolean); procedure Save(OnlyDesktop:boolean);
property Filename: string read FFilename write SetFilename; property Filename: string read FFilename write SetFilename;
procedure CreateConfig; procedure CreateConfig;
procedure GetDefaultFPCSourceDirectory;
function GetTestBuildDirectory: string; function GetTestBuildDirectory: string;
function GetFPCSourceDirectory: string; function GetFPCSourceDirectory: string;
function GetCompilerFilename: string; function GetCompilerFilename: string;
@ -900,11 +899,6 @@ begin
Filename:=ConfFilename; Filename:=ConfFilename;
end; end;
procedure TEnvironmentOptions.GetDefaultFPCSourceDirectory;
begin
end;
procedure TEnvironmentOptions.SetFileName(const NewFilename: string); procedure TEnvironmentOptions.SetFileName(const NewFilename: string);
begin begin
if FFilename=NewFilename then exit; if FFilename=NewFilename then exit;

View File

@ -78,8 +78,10 @@ begin
RequireDerivedFormResource := True; RequireDerivedFormResource := True;
// When quick rebuilding the IDE, FPC rebuilds only the lazarus.pp, so any // When quick rebuilding the IDE (e.g. when the set of install packages have
// flag that should work with quick build must be set here. // changed), only the unit paths have changed and so FPC rebuilds only the
// lazarus.pp.
// Any flag that should work with quick build must be set here.
KeepInstalledPackages:={$IFDEF BigIDE}True{$ELSE}False{$ENDIF}; KeepInstalledPackages:={$IFDEF BigIDE}True{$ELSE}False{$ENDIF};
// end of build flags // end of build flags