cnwizards
cnwizards copied to clipboard
Code Formatter update Case based on vars, arguments bug
// before formatting
function TZConnectionHelper.ExecuteSelect(const Sql: string): TZReadOnlyQuery;
begin
Result := TZReadOnlyQuery.Create(nil);
Result.SQL.Text := Sql;
end;
// after formatting
function TZConnectionHelper.ExecuteSelect(const Sql: string): TZReadOnlyQuery;
begin
Result := TZReadOnlyQuery.Create(nil);
Result.Sql.Text := Sql;
Result.SQL.Text changed to Result.Sql.Text
Not easy to distinguish, now simply disabled 'Property' case correction.