Fixed: Result not defined warning in registry Read functions
This commit is contained in:
parent
82daac7c02
commit
3f8b9fc77b
@ -174,7 +174,9 @@ begin
|
|||||||
Result := FData.ReadBool(AName)
|
Result := FData.ReadBool(AName)
|
||||||
except
|
except
|
||||||
Result := ADefault;
|
Result := ADefault;
|
||||||
end;
|
end
|
||||||
|
else
|
||||||
|
Result := ADefault;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TX2RegistrySettings.ReadFloat;
|
function TX2RegistrySettings.ReadFloat;
|
||||||
@ -184,7 +186,9 @@ begin
|
|||||||
Result := FData.ReadFloat(AName)
|
Result := FData.ReadFloat(AName)
|
||||||
except
|
except
|
||||||
Result := ADefault;
|
Result := ADefault;
|
||||||
end;
|
end
|
||||||
|
else
|
||||||
|
Result := ADefault;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TX2RegistrySettings.ReadInteger;
|
function TX2RegistrySettings.ReadInteger;
|
||||||
@ -194,7 +198,9 @@ begin
|
|||||||
Result := FData.ReadInteger(AName)
|
Result := FData.ReadInteger(AName)
|
||||||
except
|
except
|
||||||
Result := ADefault;
|
Result := ADefault;
|
||||||
end;
|
end
|
||||||
|
else
|
||||||
|
Result := ADefault;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TX2RegistrySettings.ReadString;
|
function TX2RegistrySettings.ReadString;
|
||||||
@ -204,7 +210,9 @@ begin
|
|||||||
Result := FData.ReadString(AName)
|
Result := FData.ReadString(AName)
|
||||||
except
|
except
|
||||||
Result := ADefault;
|
Result := ADefault;
|
||||||
end;
|
end
|
||||||
|
else
|
||||||
|
Result := ADefault;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user