Changeset 137 for trunk/Packages/CoolWeb/Common/UHtmlClasses.pas
- Timestamp:
- Sep 9, 2022, 1:16:58 AM (2 years ago)
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.