Merge pull request #506 from OH1KH/squash_state_county

Fix for county storing
This commit is contained in:
Petr Hlozek 2022-05-14 16:28:58 +02:00 committed by GitHub
commit 17a8505fb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -6593,9 +6593,9 @@ begin
edtState.Text := c_state;
if ((c_county <> '') and (edtCounty.Text='')) or AlwaysReplace or ReplaceZonesEtc then
begin
if (edtState.Text<>'') then
if ((edtState.Text<>'') and (c_county <> '')) then //chk c_county.Might be empty because above if-and-or-or passes it wnen empty
edtCounty.Text := edtState.Text+','+c_county
else
else
edtCounty.Text := c_county
end
end; //county

View File

@ -18,7 +18,7 @@ const
cRELEAS = 2;
cBUILD = 1;
cBUILD_DATE = '2022-05-05';
cBUILD_DATE = '2022-05-12';
implementation