IDE: fixed typo in assigning formatting parameters of dbgEventWatchTriggered resource string

git-svn-id: trunk@58485 -
This commit is contained in:
maxim 2018-07-10 23:50:44 +00:00
parent d7e691c998
commit 7889edf162

View File

@ -461,7 +461,7 @@ begin
case ABreakPoint.Kind of
bpkSource: Msg := Format(dbgEventBreakSourceBreakPoint , [Loc]); // should not be here
bpkAddress: Msg := Format(dbgEventBreakAddressBreakPoint, [Loc]); // should not be here
bpkData: Msg := Format(dbgEventWatchTriggered, [Loc, ABreakpoint.WatchData,
bpkData: Msg := Format(dbgEventWatchTriggered, [ABreakpoint.WatchData, Loc,
AOldWatchedVal, ANewWatchedVal]);
end;