reafactor ... <> 0 with not ... equals(0)

This commit is contained in:
Basile Burg 2020-07-05 14:48:19 +02:00
parent b3da921d63
commit 87c8ca3cd1
12 changed files with 18 additions and 18 deletions

View File

@ -957,7 +957,7 @@ begin
getprocInputHandler.removeProcess(TProcess(sender)); getprocInputHandler.removeProcess(TProcess(sender));
if proc is TDexedProcess then if proc is TDexedProcess then
dproc := TDexedProcess(proc); dproc := TDexedProcess(proc);
if (proc.ExitStatus <> 0) then if not proc.ExitStatus.equals(0) then
begin begin
fMsgs.message(format('error: the process (%s) has returned the status %s', fMsgs.message(format('error: the process (%s) has returned the status %s',
[proc.Executable, prettyReturnStatus(proc)]), fAsProjectItf, amcProj, amkErr); [proc.Executable, prettyReturnStatus(proc)]), fAsProjectItf, amcProj, amkErr);

View File

@ -151,7 +151,7 @@ const
begin begin
result := inherited Compare(range); result := inherited Compare(range);
assert(range <> nil); assert(range <> nil);
if result <> 0 then if not result.equals(0) then
exit; exit;
if range is TSynD2SynRange then if range is TSynD2SynRange then

View File

@ -914,7 +914,7 @@ begin
begin begin
if fDebugConditions then if fDebugConditions then
list.Add('-debug'); list.Add('-debug');
if fDbgLevel <> 0 then if not fDbgLevel.equals(0) then
list.Add('-debug=' + intToStr(fDbgLevel)); list.Add('-debug=' + intToStr(fDbgLevel));
for idt in fDbgIdents do for idt in fDbgIdents do
list.Add('-debug=' + idt); list.Add('-debug=' + idt);

View File

@ -283,7 +283,7 @@ begin
if not o.findAny('path', d) then if not o.findAny('path', d) then
continue; continue;
p := d.AsString; p := d.AsString;
if (p.length <> 0) and (p[p.length] <> DirectorySeparator) then if not p.length.equals(0) and (p[p.length] <> DirectorySeparator) then
p += DirectorySeparator; p += DirectorySeparator;
if DirectoryExistsUTF8(p) then if DirectoryExistsUTF8(p) then
loc.Add(p); loc.Add(p);
@ -1143,7 +1143,7 @@ begin
begin begin
fDubProc.Options := fDubProc.Options + [poWaitOnExit, poNewConsole]; fDubProc.Options := fDubProc.Options + [poWaitOnExit, poNewConsole];
end; end;
if fMetaEnv.Count <> 0 then if not fMetaEnv.Count.equals(0) then
begin begin
for i := 0 to fMetaEnv.Count-1 do for i := 0 to fMetaEnv.Count-1 do
begin begin

View File

@ -2050,7 +2050,7 @@ begin
cpuViewer.TIObject := fInspState; cpuViewer.TIObject := fInspState;
cpuViewer.RefreshPropertyValues; cpuViewer.RefreshPropertyValues;
// inferior options // inferior options
if o.environmentPaths.Count <> 0 then if not o.environmentPaths.Count.equals(0) then
begin begin
str := ''; str := '';
for i:= 0 to o.environmentPaths.Count-1 do for i:= 0 to o.environmentPaths.Count-1 do
@ -2060,7 +2060,7 @@ begin
end; end;
if DirectoryExists(fSyms.expand(o.workingDirectory)) then if DirectoryExists(fSyms.expand(o.workingDirectory)) then
gdbCommand('-environment-cd ' + fSyms.expand(o.workingDirectory)); gdbCommand('-environment-cd ' + fSyms.expand(o.workingDirectory));
if (o.arguments.Count <> 0) or (o.queryArguments) then if not o.arguments.Count.equals(0) or o.queryArguments then
begin begin
str := ''; str := '';
if o.queryArguments and not InputQuery('Command line arguments', 'GDB commander', str) then if o.queryArguments and not InputQuery('Command line arguments', 'GDB commander', str) then
@ -2462,7 +2462,7 @@ begin
sigmean := 'unknown meaning'; sigmean := 'unknown meaning';
if fJson.findAny('signal-name', val) then if fJson.findAny('signal-name', val) then
signame := val.AsString; signame := val.AsString;
if (fOptions.ignoredSignals.Count <> 0) and if not fOptions.ignoredSignals.Count.equals(0) and
(fOptions.ignoredSignals.IndexOf(signame) <> -1) then (fOptions.ignoredSignals.IndexOf(signame) <> -1) then
begin begin
continueDebugging; continueDebugging;

View File

@ -488,7 +488,7 @@ begin
finally finally
dub.Free; dub.Free;
end; end;
if err <> 0 then if not err.equals(0) then
begin begin
itf.message('error, failed to fetch the package', nil, amcMisc, amkErr); itf.message('error, failed to fetch the package', nil, amcMisc, amkErr);
exit; exit;
@ -539,7 +539,7 @@ begin
finally finally
dub.Free; dub.Free;
end; end;
if err <> 0 then if not err.equals(0) then
begin begin
// allow "sourceLibrary" // allow "sourceLibrary"
EntitiesConnector.beginUpdate; EntitiesConnector.beginUpdate;

View File

@ -2963,7 +2963,7 @@ begin
inph := EntitiesConnector.getSingleService('IProcInputHandler'); inph := EntitiesConnector.getSingleService('IProcInputHandler');
if inph.isNotNil then if inph.isNotNil then
(inph as IProcInputHandler).removeProcess(proc); (inph as IProcInputHandler).removeProcess(proc);
if (proc.ExitStatus <> 0) then if not proc.ExitStatus.equals(0) then
begin begin
fMsgs.message(format('error: the process (%s) has returned the status %s', fMsgs.message(format('error: the process (%s) has returned the status %s',
[proc.Executable, prettyReturnStatus(proc)]), fDoc, amcEdit, amkErr); [proc.Executable, prettyReturnStatus(proc)]), fDoc, amcEdit, amkErr);
@ -3095,7 +3095,7 @@ begin
dmdproc.Parameters.Add('-of' + fname + objExt); dmdproc.Parameters.Add('-of' + fname + objExt);
dmdproc.Parameters.Add('-J' + fDoc.fileName.extractFilePath); dmdproc.Parameters.Add('-J' + fDoc.fileName.extractFilePath);
dmdproc.Parameters.AddStrings(fRunnablesOptions.staticSwitches); dmdproc.Parameters.AddStrings(fRunnablesOptions.staticSwitches);
if lst.isNotNil and (lst.Count <> 0) then if lst.isNotNil and not lst.Count.equals(0) then
dmdproc.Parameters.AddStrings(lst); dmdproc.Parameters.AddStrings(lst);
{$ifdef WINDOWS} {$ifdef WINDOWS}
{$ifdef CPUX86_64} {$ifdef CPUX86_64}

View File

@ -539,7 +539,7 @@ begin
begin begin
Compare := AnsiCompareStr(item1.SubItems[3], item2.SubItems[3]); Compare := AnsiCompareStr(item1.SubItems[3], item2.SubItems[3]);
end end
else if col <> 0 then else if not col.equals(0) then
begin begin
i1 := item1.SubItems[col-1].ToInt64; i1 := item1.SubItems[col-1].ToInt64;
i2 := item2.SubItems[col-1].ToInt64; i2 := item2.SubItems[col-1].ToInt64;

View File

@ -371,7 +371,7 @@ procedure TShortcutEditor.btnClearClick(Sender: TObject);
begin begin
if not anItemIsSelected then if not anItemIsSelected then
exit; exit;
if TShortcutItem(tree.Selected.Data).data <> 0 then if not TShortcutItem(tree.Selected.Data).data <> 0 then
begin begin
TShortcutItem(tree.Selected.Data).data := 0; TShortcutItem(tree.Selected.Data).data := 0;
fHasChanged := true; fHasChanged := true;

View File

@ -224,7 +224,7 @@ begin
fSymbols[CPO] := fProjInterface.outputFilename; fSymbols[CPO] := fProjInterface.outputFilename;
fSymbols[CPOP]:= fSymbols[CPO].extractFileDir; fSymbols[CPOP]:= fSymbols[CPO].extractFileDir;
fSymbols[CPR] := fSymbols[CPP]; fSymbols[CPR] := fSymbols[CPP];
if fProjInterface.sourcesCount <> 0 then if not fProjInterface.sourcesCount.equals(0) then
begin begin
str := TStringList.Create; str := TStringList.Create;
try try

View File

@ -1040,7 +1040,7 @@ end;
procedure TScrollMemo.goToLine(value: integer); procedure TScrollMemo.goToLine(value: integer);
begin begin
if fMemo.PaintLock <> 0 then if not fMemo.PaintLock.equals(0) then
exit; exit;
if value > fMemo.Lines.Count then if value > fMemo.Lines.Count then
value := fMemo.Lines.Count value := fMemo.Lines.Count
@ -1702,7 +1702,7 @@ begin
t += byte(result = imTabs); t += byte(result = imTabs);
s += byte(result = imSpaces); s += byte(result = imSpaces);
end; end;
if (t <> 0) and (s <> 0) then if not t.equals(0) and not s.equals(0) then
result := imMixed result := imMixed
else if t.equals(0) then else if t.equals(0) then
result := imSpaces result := imSpaces

View File

@ -292,7 +292,7 @@ begin
if fTerminatedFlag then if fTerminatedFlag then
exit; exit;
fTerminatedFlag := true; fTerminatedFlag := true;
if fProcess.ExitStatus <> 0 then if not fProcess.ExitStatus.equals(0) then
begin begin
fMsgs.message(format('error: the tool (%s) has returned the status %s', fMsgs.message(format('error: the tool (%s) has returned the status %s',
[fProcess.Executable, prettyReturnStatus(fProcess)]), nil, amcMisc, amkErr); [fProcess.Executable, prettyReturnStatus(fProcess)]), nil, amcMisc, amkErr);