mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 07:39:59 +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 RenderAndFilterOptions;
|
||||
public
|
||||
constructor Create(aCustomOptions: TMemo);
|
||||
constructor CreateWithMemo(aCustomOptions: TMemo);
|
||||
destructor Destroy; override;
|
||||
public
|
||||
property IdleConnected: Boolean read FIdleConnected write SetIdleConnected;
|
||||
@ -49,7 +49,7 @@ implementation
|
||||
|
||||
{ TfrmAllCompilerOptions }
|
||||
|
||||
constructor TfrmAllCompilerOptions.Create(aCustomOptions: TMemo);
|
||||
constructor TfrmAllCompilerOptions.CreateWithMemo(aCustomOptions: TMemo);
|
||||
begin
|
||||
inherited Create(Nil);
|
||||
fCustomOptions := aCustomOptions;
|
||||
|
@ -1359,10 +1359,10 @@ end;
|
||||
procedure TBaseCompilerOptions.LoadFromXMLConfig(AXMLConfig: TXMLConfig;
|
||||
const Path: string);
|
||||
var
|
||||
p, s: String;
|
||||
p: String;
|
||||
b, PathDelimChange: boolean;
|
||||
FileVersion: Integer;
|
||||
i, Cnt: LongInt;
|
||||
i: LongInt;
|
||||
dit: TCompilerDbgSymbolType;
|
||||
|
||||
function f(const Filename: string): string;
|
||||
|
@ -112,7 +112,7 @@ procedure TCompilerOtherOptionsFrame.btnAllOptionsClick(Sender: TObject);
|
||||
var
|
||||
AllOpts: TfrmAllCompilerOptions;
|
||||
begin
|
||||
AllOpts := TfrmAllCompilerOptions.Create(memoCustomOptions);
|
||||
AllOpts := TfrmAllCompilerOptions.CreateWithMemo(memoCustomOptions);
|
||||
try
|
||||
if AllOpts.ShowModal = mrOK then
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user