mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 06:48:11 +02:00
Correction of dubious indentation in the code
This commit is contained in:
parent
847dee461c
commit
19319bf7de
@ -449,7 +449,8 @@ begin
|
||||
' ': ;
|
||||
';': begin
|
||||
Analyze(AList, ADomain, parts);
|
||||
for p := 0 to Length(parts)-1 do parts[p] := '';
|
||||
for p := 0 to Length(parts)-1 do
|
||||
parts[p] := '';
|
||||
p := 0;
|
||||
end;
|
||||
'<': if (i < Length(FExpression)) then begin
|
||||
|
@ -1034,7 +1034,8 @@ end;
|
||||
{ Returns an appropriate string for the given parameters }
|
||||
class function TIpBaseComponent.GetLogString(const S, D1, D2, D3: DWORD): string;
|
||||
begin
|
||||
if (S=0) or (D1=0) or (D2=0) or (D3=0) then ; // avoid hints
|
||||
if (S=0) or (D1=0) or (D2=0) or (D3=0) then
|
||||
; // avoid hints
|
||||
Result := '!!!! Unhandled log entry'#10#13;
|
||||
end;
|
||||
|
||||
|
@ -362,7 +362,8 @@ begin
|
||||
WParam := WParam or ((StatusPanel.StatusBar.Panels.Count - 1) - StatusPanel.Index)
|
||||
else
|
||||
WParam := WParam or StatusPanel.Index;
|
||||
if StatusPanel.StatusBar.UseRightToLeftReading then WParam := WParam or SBT_RTLREADING;
|
||||
if StatusPanel.StatusBar.UseRightToLeftReading then
|
||||
WParam := WParam or SBT_RTLREADING;
|
||||
Windows.SendMessageW(StatusPanel.StatusBar.Handle, SB_SETTEXTW, WParam, LPARAM(PWideChar(UTF8ToUTF16(Text))));
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user