소스 검색

[commons] fix for older delphi versions

Exilon 3 년 전
부모
커밋
35ff11ae33
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      Quick.Commons.pas

+ 5 - 0
Quick.Commons.pas

@@ -2297,7 +2297,11 @@ end;
 
 function TDateTimeHelper.ToMilliseconds : Int64;
 begin
+  {$IFDEF DELPHIRX104_ANDUP}
   Result := System.DateUtils.DateTimeToMilliseconds(Self);
+  {$ELSE}
+  Result := System.DateUtils.MilliSecondOf(Self);
+  {$ENDIF}
 end;
 
 function TDateTimeHelper.ToString : string;
@@ -2360,3 +2364,4 @@ initialization
 end.
 
 
+