Project: fix an undefined return value

git-svn-id: trunk@39244 -
This commit is contained in:
juha 2012-11-05 09:11:01 +00:00
parent 47e02aded0
commit e37f37dd77

View File

@ -6944,7 +6944,9 @@ end;
function TProjectBuildMode.LazProject: TProject;
begin
if Owner is TProjectBuildModes then
Result:=TProjectBuildModes(Owner).LazProject;
Result:=TProjectBuildModes(Owner).LazProject
else
Result:=Nil;
end;
procedure TProjectBuildMode.Clear;