mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 19:19:18 +02:00
IDE: less warnings
git-svn-id: trunk@42164 -
This commit is contained in:
parent
0e0d820f79
commit
f8fcc4305b
@ -34,7 +34,7 @@ type
|
|||||||
procedure OnIdle(Sender: TObject; var Done: Boolean);
|
procedure OnIdle(Sender: TObject; var Done: Boolean);
|
||||||
procedure RenderAndFilterOptions;
|
procedure RenderAndFilterOptions;
|
||||||
public
|
public
|
||||||
constructor Create(aCustomOptions: TMemo);
|
constructor CreateWithMemo(aCustomOptions: TMemo);
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
public
|
public
|
||||||
property IdleConnected: Boolean read FIdleConnected write SetIdleConnected;
|
property IdleConnected: Boolean read FIdleConnected write SetIdleConnected;
|
||||||
@ -49,7 +49,7 @@ implementation
|
|||||||
|
|
||||||
{ TfrmAllCompilerOptions }
|
{ TfrmAllCompilerOptions }
|
||||||
|
|
||||||
constructor TfrmAllCompilerOptions.Create(aCustomOptions: TMemo);
|
constructor TfrmAllCompilerOptions.CreateWithMemo(aCustomOptions: TMemo);
|
||||||
begin
|
begin
|
||||||
inherited Create(Nil);
|
inherited Create(Nil);
|
||||||
fCustomOptions := aCustomOptions;
|
fCustomOptions := aCustomOptions;
|
||||||
|
@ -1359,10 +1359,10 @@ end;
|
|||||||
procedure TBaseCompilerOptions.LoadFromXMLConfig(AXMLConfig: TXMLConfig;
|
procedure TBaseCompilerOptions.LoadFromXMLConfig(AXMLConfig: TXMLConfig;
|
||||||
const Path: string);
|
const Path: string);
|
||||||
var
|
var
|
||||||
p, s: String;
|
p: String;
|
||||||
b, PathDelimChange: boolean;
|
b, PathDelimChange: boolean;
|
||||||
FileVersion: Integer;
|
FileVersion: Integer;
|
||||||
i, Cnt: LongInt;
|
i: LongInt;
|
||||||
dit: TCompilerDbgSymbolType;
|
dit: TCompilerDbgSymbolType;
|
||||||
|
|
||||||
function f(const Filename: string): string;
|
function f(const Filename: string): string;
|
||||||
|
@ -112,7 +112,7 @@ procedure TCompilerOtherOptionsFrame.btnAllOptionsClick(Sender: TObject);
|
|||||||
var
|
var
|
||||||
AllOpts: TfrmAllCompilerOptions;
|
AllOpts: TfrmAllCompilerOptions;
|
||||||
begin
|
begin
|
||||||
AllOpts := TfrmAllCompilerOptions.Create(memoCustomOptions);
|
AllOpts := TfrmAllCompilerOptions.CreateWithMemo(memoCustomOptions);
|
||||||
try
|
try
|
||||||
if AllOpts.ShowModal = mrOK then
|
if AllOpts.ShowModal = mrOK then
|
||||||
;
|
;
|
||||||
|
Loading…
Reference in New Issue
Block a user