mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 11:10:23 +02:00
IDE: comment, clean up
git-svn-id: trunk@36045 -
This commit is contained in:
parent
92d092cc3d
commit
a6537c8ebe
@ -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;
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user