Changeset 18 for trunk/Packages
- Timestamp:
- Nov 6, 2017, 1:14:20 PM (7 years ago)
- Location:
- trunk/Packages
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UXMLUtils.pas
r15 r18 97 97 if Pos('Z', XMLDateTime) > 0 then 98 98 LeftCutString(XMLDateTime, Part, 'Z'); 99 SecondFraction := StrToFloat('0 .'+ Part);99 SecondFraction := StrToFloat('0' + DecimalSeparator + Part); 100 100 Millisecond := Trunc(SecondFraction * 1000); 101 101 end else begin -
trunk/Packages/TemplateGenerics/Generic/GenericMatrix.inc
r6 r18 50 50 function Implode(RowSeparator, ColSeparator: string; Converter: TToStringConverter): string; 51 51 procedure Explode(Text, Separator: string; Converter: TFromStringConverter; SlicesCount: Integer = -1); 52 function IndexOf(Item: TGMatrixItem; Start: TIndex = 0): TIndex;53 function IndexOfList(List: TGMatrix; Start: TIndex = 0): TIndex;52 function IndexOf(Item: TGMatrixItem; Start: TIndex): TIndex; 53 function IndexOfList(List: TGMatrix; Start: TIndex): TIndex; 54 54 procedure Insert(Index: TIndex; Item: TGMatrixItem); 55 55 procedure InsertList(Index: TIndex; List: TGMatrix);
Note:
See TracChangeset
for help on using the changeset viewer.