Changeset 137 for trunk/Packages/CoolWeb/Common
- Timestamp:
- Sep 9, 2022, 1:16:58 AM (2 years ago)
- Location:
- trunk/Packages/CoolWeb/Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CoolWeb/Common/UHtmlClasses.pas
r84 r137 1 1 unit UHtmlClasses; 2 3 {$mode delphi}{$H+}4 2 5 3 interface … … 242 240 end; 243 241 242 244 243 implementation 245 244 246 245 resourcestring 247 246 SStringToIPConversionError = 'String to IP address conversion error'; 248 249 247 250 248 function LeftCutString(var Source, Output: string; Delimiter: string; Allowed: string = ''): Boolean; … … 322 320 begin 323 321 Value.Free; 324 inherited Destroy;322 inherited; 325 323 end; 326 324 … … 345 343 begin 346 344 Cells.Free; 347 inherited Destroy;345 inherited; 348 346 end; 349 347 … … 370 368 begin 371 369 Rows.Free; 372 inherited Destroy;370 inherited; 373 371 end; 374 372 … … 421 419 constructor THtmlInput.Create; 422 420 begin 423 424 421 end; 425 422 426 423 destructor THtmlInput.Destroy; 427 424 begin 428 inherited Destroy;425 inherited; 429 426 end; 430 427 … … 452 449 begin 453 450 Action.Free; 454 inherited Destroy;451 inherited; 455 452 end; 456 453 … … 754 751 begin 755 752 Levels.Free; 756 inherited Destroy;753 inherited; 757 754 end; 758 755 … … 893 890 begin 894 891 Data.Free; 895 inherited Destroy;892 inherited; 896 893 end; 897 894 -
trunk/Packages/CoolWeb/Common/UMIMEType.pas
r84 r137 1 1 unit UMIMEType; 2 3 {$mode Delphi}{$H+}4 2 5 3 interface … … 12 10 var 13 11 MIMETypeList: TStringList; 12 14 13 15 14 implementation -
trunk/Packages/CoolWeb/Common/UMemoryStreamEx.pas
r84 r137 1 1 unit UMemoryStreamEx; 2 3 {$mode delphi}{$H+}4 2 5 3 interface … … 59 57 end; 60 58 59 61 60 implementation 62 61 … … 261 260 end; 262 261 263 procedure TMemoryStreamEx.WriteString(Data: string);262 procedure TMemoryStreamEx.WriteString(Data: string); 264 263 begin 265 264 if Length(Data) > 0 then … … 314 313 constructor TThreadMemoryStreamEx.Create; 315 314 begin 316 inherited Create;315 inherited; 317 316 Lock := TCriticalSection.Create; 318 317 end; … … 321 320 begin 322 321 Lock.Free; 323 inherited Destroy;322 inherited; 324 323 end; 325 324 -
trunk/Packages/CoolWeb/Common/UXmlClasses.pas
r84 r137 1 1 unit UXmlClasses; 2 3 {$mode delphi}{$H+}4 2 5 3 interface 6 4 7 uses Classes, SysUtils, StrUtils, SpecializedList,8 SpecializedDictionary;5 uses 6 Classes, SysUtils, StrUtils, SpecializedList, SpecializedDictionary; 9 7 10 8 type … … 50 48 property AsString: string read GetAsString; 51 49 end; 50 52 51 53 52 implementation
Note:
See TracChangeset
for help on using the changeset viewer.