소스 검색

* Removed inttostr, isvalidident so sysutils versions are used.

git-svn-id: trunk@6984 -
michael 18 년 전
부모
커밋
f60fbbb01b
1개의 변경된 파일0개의 추가작업 그리고 13개의 파일을 삭제
  1. 0 13
      rtl/objpas/classes/util.inc

+ 0 - 13
rtl/objpas/classes/util.inc

@@ -11,19 +11,6 @@
 
  **********************************************************************}
 
-Function IntToStr (I : Longint) : String;
-
-begin
-  Str(I,Result);
-end;
-
-function IsValidIdent(const Ident: string): Boolean;
-
-begin
-  Result:=True;
-end;
-
-
 procedure BinToHex(BinValue, HexValue: PChar; BinBufSize: Integer);
 Const
   HexDigits='0123456789ABCDEF';