mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:08:12 +02:00
Correction of dubious indentation in the code
This commit is contained in:
parent
847dee461c
commit
19319bf7de
@ -656,7 +656,7 @@ begin
|
||||
else if Len<2 then
|
||||
Raise ETestInsight.Create('Basepath cannot be empty');
|
||||
if FBasePath=AValue then Exit;
|
||||
FBasePath:=AValue;
|
||||
FBasePath:=AValue;
|
||||
end;
|
||||
|
||||
{$IFDEF USECORS}
|
||||
|
@ -449,8 +449,9 @@ begin
|
||||
' ': ;
|
||||
';': begin
|
||||
Analyze(AList, ADomain, parts);
|
||||
for p := 0 to Length(parts)-1 do parts[p] := '';
|
||||
p := 0;
|
||||
for p := 0 to Length(parts)-1 do
|
||||
parts[p] := '';
|
||||
p := 0;
|
||||
end;
|
||||
'<': if (i < Length(FExpression)) then begin
|
||||
inc(p);
|
||||
|
@ -1034,8 +1034,9 @@ 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
|
||||
Result := '!!!! Unhandled log entry'#10#13;
|
||||
if (S=0) or (D1=0) or (D2=0) or (D3=0) then
|
||||
; // avoid hints
|
||||
Result := '!!!! Unhandled log entry'#10#13;
|
||||
end;
|
||||
|
||||
procedure TIpBaseComponent.SetVersion(const Value: string);
|
||||
|
@ -1344,7 +1344,7 @@ begin
|
||||
|
||||
// hide process
|
||||
if OSError(GetCurrentProcess(Proc{%H-}), Self, SName, SGetCurrentProc) then Exit;
|
||||
OSError(ShowHideProcess(Proc, False), Self, SName, SShowHideProc);
|
||||
OSError(ShowHideProcess(Proc, False), Self, SName, SShowHideProc);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
|
@ -362,8 +362,9 @@ 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;
|
||||
Windows.SendMessageW(StatusPanel.StatusBar.Handle, SB_SETTEXTW, WParam, LPARAM(PWideChar(UTF8ToUTF16(Text))));
|
||||
if StatusPanel.StatusBar.UseRightToLeftReading then
|
||||
WParam := WParam or SBT_RTLREADING;
|
||||
Windows.SendMessageW(StatusPanel.StatusBar.Handle, SB_SETTEXTW, WParam, LPARAM(PWideChar(UTF8ToUTF16(Text))));
|
||||
end;
|
||||
|
||||
procedure UpdateStatusBarPanelWidths(const StatusBar: TStatusBar);
|
||||
|
Loading…
Reference in New Issue
Block a user