mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 20:21:04 +02:00
ide: use one formatting style for dci file
git-svn-id: trunk@20804 -
This commit is contained in:
parent
62e267abb6
commit
c3e4eb2a74
@ -88,7 +88,8 @@ if $param(Condition) then |
|
|||||||
$(AttributesStart)
|
$(AttributesStart)
|
||||||
EnableMakros=true
|
EnableMakros=true
|
||||||
$(AttributesEnd)
|
$(AttributesEnd)
|
||||||
if $param(Condition) then begin
|
if $param(Condition) then
|
||||||
|
begin
|
||||||
|
|
|
|
||||||
end;
|
end;
|
||||||
[ife | if then (no begin/end) else (no begin/end)]
|
[ife | if then (no begin/end) else (no begin/end)]
|
||||||
@ -102,10 +103,11 @@ else
|
|||||||
$(AttributesStart)
|
$(AttributesStart)
|
||||||
EnableMakros=true
|
EnableMakros=true
|
||||||
$(AttributesEnd)
|
$(AttributesEnd)
|
||||||
if $param(Condition) then begin
|
if $param(Condition) then
|
||||||
|
begin
|
||||||
|
|
|
|
||||||
end
|
end else
|
||||||
else begin
|
begin
|
||||||
|
|
||||||
end;
|
end;
|
||||||
[procedure | procedure declaration]
|
[procedure | procedure declaration]
|
||||||
@ -148,7 +150,8 @@ end;
|
|||||||
$(AttributesStart)
|
$(AttributesStart)
|
||||||
EnableMakros=true
|
EnableMakros=true
|
||||||
$(AttributesEnd)
|
$(AttributesEnd)
|
||||||
while $param(Condition) do begin
|
while $param(Condition) do
|
||||||
|
begin
|
||||||
|
|
|
|
||||||
end;
|
end;
|
||||||
[whiles | while (no begin)]
|
[whiles | while (no begin)]
|
||||||
@ -160,7 +163,8 @@ while $param(Condition) do |
|
|||||||
$(AttributesStart)
|
$(AttributesStart)
|
||||||
EnableMakros=true
|
EnableMakros=true
|
||||||
$(AttributesEnd)
|
$(AttributesEnd)
|
||||||
with $param(Condition) do begin
|
with $param(Condition) do
|
||||||
|
begin
|
||||||
|
|
|
|
||||||
end;
|
end;
|
||||||
[b | begin end]
|
[b | begin end]
|
||||||
@ -174,14 +178,16 @@ HexStr(Cardinal(|),8)
|
|||||||
[be | begin end else begin end]
|
[be | begin end else begin end]
|
||||||
begin
|
begin
|
||||||
|
|
|
|
||||||
end else begin
|
end else
|
||||||
|
begin
|
||||||
|
|
||||||
end;
|
end;
|
||||||
[withc | with for components]
|
[withc | with for components]
|
||||||
$(AttributesStart)
|
$(AttributesStart)
|
||||||
EnableMakros=true
|
EnableMakros=true
|
||||||
$(AttributesEnd)
|
$(AttributesEnd)
|
||||||
with $param(Component) do begin
|
with $param(Component) do
|
||||||
|
begin
|
||||||
Name:='$param(Name)';
|
Name:='$param(Name)';
|
||||||
Parent:=$param(Parent);
|
Parent:=$param(Parent);
|
||||||
Left:=$param(0);
|
Left:=$param(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user