Browse Source

* fixed some small bugs

master
bergmann 8 years ago
parent
commit
44f95f96e7
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      uutlCommon.pas
  2. +1
    -1
      uutlListBase.pas

+ 1
- 1
uutlCommon.pas View File

@@ -79,7 +79,7 @@ type
end;

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function Supports (const aInstance: TObject; const aClass: TClass; out aObj): Boolean;
function Supports (const aInstance: TObject; const aClass: TClass; out aObj): Boolean; overload;
function GetTickCount64 (): QWord;
function GetMicroTime (): QWord;
function GetPlatformIdentitfier(): String;


+ 1
- 1
uutlListBase.pas View File

@@ -119,7 +119,7 @@ end;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
procedure TutlListBase.SetCount(const aValue: Integer);
begin
if (aValue < Capacity) then
if (aValue > Capacity) then
Capacity := aValue;
fCount := aValue;
end;


Loading…
Cancel
Save