mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 20:18:15 +02:00
IDEIntf: renamed AddCsutomMessage to AddIDEMessage
git-svn-id: trunk@49762 -
This commit is contained in:
parent
c99cdd9e57
commit
d368f7dcb5
@ -97,7 +97,7 @@ type
|
||||
var
|
||||
IDEMessagesWindow: TIDEMessagesWindowInterface = nil;// initialized by the IDE
|
||||
|
||||
function AddCustomMessage(TheUrgency: TMessageLineUrgency; Msg: string;
|
||||
function AddIDEMessage(TheUrgency: TMessageLineUrgency; Msg: string;
|
||||
aSrcFilename: string = ''; LineNumber: integer = 0; Column: integer = 0;
|
||||
const ViewCaption: string = ''): TMessageLine;
|
||||
|
||||
@ -108,7 +108,7 @@ begin
|
||||
MsgQuickFixes.RegisterQuickFix(Fix);
|
||||
end;
|
||||
|
||||
function AddCustomMessage(TheUrgency: TMessageLineUrgency; Msg: string;
|
||||
function AddIDEMessage(TheUrgency: TMessageLineUrgency; Msg: string;
|
||||
aSrcFilename: string; LineNumber: integer; Column: integer;
|
||||
const ViewCaption: string): TMessageLine;
|
||||
var
|
||||
|
@ -185,7 +185,7 @@ begin
|
||||
end;
|
||||
end
|
||||
else
|
||||
AddCustomMessage(mluError,Format(lisFileNotFound2, [Filename]));
|
||||
AddIDEMessage(mluError,Format(lisFileNotFound2, [Filename]));
|
||||
end;
|
||||
|
||||
function TResourceItem.GetRealFileName(ProjectDirectory: String): String;
|
||||
|
Loading…
Reference in New Issue
Block a user