mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 22:29:25 +02:00
IDE: less hints
git-svn-id: trunk@58265 -
This commit is contained in:
parent
eb3384c70e
commit
47c60bcd9e
@ -108,7 +108,6 @@ var
|
||||
const
|
||||
RESULTSEPARATOR='-----------';
|
||||
RESULTEVAL='>>>> ';
|
||||
RESULTMOD='<<>> ';
|
||||
|
||||
{ TEvaluateDlg }
|
||||
|
||||
|
@ -83,14 +83,14 @@ type
|
||||
FGridData: TStringGrid;
|
||||
FGridMethods: TStringGrid;
|
||||
FUpdateLock, FUpdateNeeded: Boolean;
|
||||
FTestUpdateLock, FTestUpdateNeeded: Boolean;
|
||||
FTestUpdateLock: Boolean;
|
||||
FRowClicked: Integer;
|
||||
FHistory: TStringList;
|
||||
FHistoryIndex: Integer;
|
||||
procedure EvaluateCallback(Sender: TObject; ASuccess: Boolean;
|
||||
ResultText: String; ResultDBGType: TDBGType);
|
||||
procedure EvaluateTestCallback(Sender: TObject; ASuccess: Boolean;
|
||||
ResultText: String; ResultDBGType: TDBGType);
|
||||
{%H-}ResultText: String; ResultDBGType: TDBGType);
|
||||
procedure Localize;
|
||||
function ShortenedExpression: String;
|
||||
procedure ContextChanged(Sender: TObject);
|
||||
|
@ -54,7 +54,8 @@ type
|
||||
function ProcessStop: Boolean;
|
||||
protected
|
||||
function GetSupportedCommands: TDBGCommands; override;
|
||||
function RequestCommand(const ACommand: TDBGCommand; const AParams: array of const; const ACallback: TMethod): Boolean; override;
|
||||
function RequestCommand(const ACommand: TDBGCommand; const AParams: array of const;
|
||||
const {%H-}ACallback: TMethod): Boolean; override;
|
||||
public
|
||||
class function Caption: String; override;
|
||||
class function NeedsExePath: boolean; override;
|
||||
|
@ -62,7 +62,7 @@ var
|
||||
|
||||
function SetupMainIDEInstance: boolean; // false if this is a secondary instance
|
||||
function GetPidFile: string;
|
||||
function IsLazarusPIDRunning(aPID: int64): boolean;
|
||||
function IsLazarusPIDRunning({%H-}aPID: int64): boolean;
|
||||
function GetRemoteControlFilename: string;
|
||||
procedure CleanUpPIDFile;
|
||||
|
||||
|
@ -11112,10 +11112,8 @@ procedure TMainIDE.SrcNotebookShowHintForSource(SrcEdit: TSourceEditor;
|
||||
|
||||
var
|
||||
ActiveUnitInfo: TUnitInfo;
|
||||
BaseURL, SmartHintStr, Expression, DebugEval, DebugEvalDerefer: String;
|
||||
DBGType,DBGTypeDerefer: TDBGType;
|
||||
BaseURL, SmartHintStr, Expression: String;
|
||||
HasHint: Boolean;
|
||||
p: SizeInt;
|
||||
Opts: TDBGEvaluateFlags;
|
||||
AtomStartPos, AtomEndPos: integer;
|
||||
AtomRect: TRect;
|
||||
|
Loading…
Reference in New Issue
Block a user