We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
destructor TZSheets.Destroy(); SetLength(FSheets, 0); FSheets := nil;
Can empty dynarray be not-nil in FPC ?
The text was updated successfully, but these errors were encountered:
destructor TZStyles.Destroy(); SetLength(FStyles, 0); FStyles := nil;
Sorry, something went wrong.
destructor TXSLXZipHelper.Destroy(); - every line
destructor TZAttributes.Destroy(); begin SetLength(FItems, 0); FItems := nil;
destructor TZsspXMLWriter.Destroy(); setlength(FTags, 0) ; FTags := nil;
destructor TZsspXMLReader.Destroy(); SetLength(FTags, 0); FTags := nil;
//Очищает массивы procedure ZESClearArrays(var _pages: TZESaveIntArray; var _names: TZESaveStrArray); begin SetLength(_pages, 0); SetLength(_names, 0); _names := nil; _pages := nil; end;
No branches or pull requests
destructor TZSheets.Destroy();
SetLength(FSheets, 0);
FSheets := nil;
Can empty dynarray be not-nil in FPC ?
The text was updated successfully, but these errors were encountered: