Skip to content

Commit

Permalink
Mini cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlaan committed Jan 16, 2025
1 parent 57ed48e commit 9b3b79d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Projects/Src/IDE.MainForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,9 @@ TMainForm = class(TUIStateForm)
function DestroyLineState(const AMemo: TIDEScintFileEdit): Boolean;
procedure DestroyDebugInfo;
procedure DetachDebugger;
function EvaluateConstant(const S: String; var Output: String): Integer;
function EvaluateConstant(const S: String; out Output: String): Integer;
function EvaluateVariableEntry(const DebugEntry: PVariableDebugEntry;
var Output: String): Integer;
out Output: String): Integer;
procedure FindNext(const ReverseDirection: Boolean);
function FindSetupDirectiveValue(const DirectiveName,
DefaultValue: String): String; overload;
Expand Down Expand Up @@ -6853,7 +6853,7 @@ procedure TMainForm.Go(AStepMode: TStepMode);
end;

function TMainForm.EvaluateConstant(const S: String;
var Output: String): Integer;
out Output: String): Integer;
begin
{ This is about evaluating constants like 'app' and not [Code] variables }
FReplyString := '';
Expand All @@ -6864,7 +6864,7 @@ function TMainForm.EvaluateConstant(const S: String;
end;

function TMainForm.EvaluateVariableEntry(const DebugEntry: PVariableDebugEntry;
var Output: String): Integer;
out Output: String): Integer;
begin
FReplyString := '';
Result := SendCopyDataMessage(FDebugClientWnd, Handle, CD_DebugClient_EvaluateVariableEntry,
Expand Down

0 comments on commit 9b3b79d

Please sign in to comment.