Selaa lähdekoodia

* Merging revisions r43714 from trunk:
------------------------------------------------------------------------
r43714 | michael | 2019-12-23 14:15:19 +0100 (Mon, 23 Dec 2019) | 1 line

* Fix bug ID #34303, readability opimizations
------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@43753 -

michael 5 vuotta sitten
vanhempi
commit
5594fb1cc3
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      rtl/objpas/classes/stringl.inc

+ 2 - 2
rtl/objpas/classes/stringl.inc

@@ -1811,7 +1811,7 @@ end;
 function TStringList.Add(const S: string): Integer;
 
 begin
-  If Not (SortStyle=sslAuto) then
+  If (SortStyle<>sslAuto) then
     Result:=FCount
   else
     If Find (S,Result) then
@@ -1969,7 +1969,7 @@ end;
 procedure TStringList.CustomSort(CompareFn: TStringListSortCompare);
 
 begin
-  If (FForceSort or (Not (FSortStyle=sslAuto))) and (FCount>1) then
+  If (FCount>1) and (FForceSort or (FSortStyle<>sslAuto))  then
     begin
     Changing;
     QuickSort(0,FCount-1, CompareFn);