debugger: next time show more informative exception about duplicate name

git-svn-id: trunk@18100 -
This commit is contained in:
paul 2009-01-04 10:01:33 +00:00
parent d9c8834b72
commit 3df9f2143a

View File

@ -3792,7 +3792,7 @@ begin
if FName = AValue then exit;
if TBaseExceptions(GetOwner).Find(AValue) <> nil
then raise EDBGExceptions.Create('Duplicate name');
then raise EDBGExceptions.Create('Duplicate name: ' + AValue);
FName := AValue;
Changed;