1
0
mirror of synced 2024-09-19 01:36:08 +00:00

Fixed: Undefined result warning in ValueExists

This commit is contained in:
Mark van Renswoude 2004-06-08 20:34:21 +00:00
parent 2fc41bcc1d
commit c4e557268f

View File

@ -283,6 +283,8 @@ end;
function TX2RegistrySettings.ValueExists;
begin
Result := False;
if OpenRead() then
Result := FData.ValueExists(AName);
end;