mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Use custom tab width and tabs-to-spaces setting uniquely in all places where we generate code. Provides a new CodeIndent() helper. Closes #1330
This commit is contained in:
@ -558,7 +558,7 @@ begin
|
||||
Params.Add(tmp);
|
||||
end;
|
||||
if Params.Count > 0 then
|
||||
Result := Result + CRLF + #9 + Implode(','+CRLF+#9, Params) + CRLF;
|
||||
Result := Result + sLineBreak + CodeIndent + Implode(',' + sLineBreak + CodeIndent, Params) + sLineBreak;
|
||||
Result := Result + ')'+CRLF;
|
||||
if comboReturns.Enabled then
|
||||
Result := Result + 'RETURNS '+comboReturns.Text+CRLF;
|
||||
|
Reference in New Issue
Block a user