FPVectorial: Fix missing call to parent constructor of TIndentedStringList. Issue #39764. Patch by ExSystem.

This commit is contained in:
wp_xyz 2022-05-23 15:45:01 +02:00
parent 59eeb39742
commit bed8f0d9e9

View File

@ -413,6 +413,7 @@ End;
Constructor TIndentedStringList.Create;
Begin
inherited Create;
FIndent := '';
FIndentSteps := ' ';
End;