IdeIntf: OI: fix assertion when multi-select components with set properties

git-svn-id: trunk@58270 -
This commit is contained in:
ondrej 2018-06-14 12:46:26 +00:00
parent 3c4d4880fb
commit fbf5f23054

View File

@ -4024,7 +4024,8 @@ end;
function TSetElementPropertyEditor.GetVisualValue: ansistring;
begin
Result := inherited GetVisualValue;
Assert(Result <> '', 'TSetElementPropertyEditor.GetVisualValue: Result="".');
if Result = '' then
Result := oisMixed;
end;
procedure TSetElementPropertyEditor.GetValues(Proc: TGetStrProc);