mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 01:56:36 +08:00

* Removes TNT Unicode controls, which are no longer required. All VCL controls now have native Unicode support. * Remove Delphi 11 packages, otherwise we would either need to keep TNT or break Unicode * PngComponents update from Uwe Raabe on http://cc.embarcadero.com/Item/26127 * Adjust auto build process * Since Delphi 2009, Strings are now UnicodeStrings, not AnsiStrings any longer. Fix a bunch of compiler errors which came along with this change. TODO: Project should compile but give tons of compiler warnings.
38 lines
691 B
ObjectPascal
38 lines
691 B
ObjectPascal
package VirtualTreesD;
|
|
|
|
{$R '..\..\Resources\VirtualTreesD.dcr'}
|
|
{$ALIGN 8}
|
|
{$ASSERTIONS ON}
|
|
{$BOOLEVAL OFF}
|
|
{$DEBUGINFO ON}
|
|
{$EXTENDEDSYNTAX ON}
|
|
{$IMPORTEDDATA ON}
|
|
{$IOCHECKS ON}
|
|
{$LOCALSYMBOLS ON}
|
|
{$LONGSTRINGS ON}
|
|
{$OPENSTRINGS ON}
|
|
{$OPTIMIZATION ON}
|
|
{$OVERFLOWCHECKS ON}
|
|
{$RANGECHECKS ON}
|
|
{$REFERENCEINFO OFF}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES OFF}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $30400000}
|
|
{$DESCRIPTION 'Virtual Treeview design time package'}
|
|
{$DESIGNONLY}
|
|
{$IMPLICITBUILD ON}
|
|
|
|
requires
|
|
dclstd,
|
|
VirtualTreesR;
|
|
|
|
contains
|
|
VirtualTreesReg in '..\..\Design\VirtualTreesReg.pas';
|
|
|
|
end.
|
|
|