* Replaced fgl with heContnrs

* Fixed behavior of the undo packet list (fixes #88)
This commit is contained in:
2012-01-14 17:58:59 +01:00
parent aa37b1cf1d
commit 940e81f123
11 changed files with 7492 additions and 43 deletions

View File

@@ -21,7 +21,7 @@
* CDDL HEADER END
*
*
* Portions Copyright 2009 Andreas Schneider
* Portions Copyright 2012 Andreas Schneider
*)
unit UStatics;
@@ -30,7 +30,7 @@ unit UStatics;
interface
uses
SysUtils, Classes, fgl, UGenericIndex, UWorldItem, UTiledata;
SysUtils, Classes, heContnrs, UGenericIndex, UWorldItem, UTiledata;
type
{ TStaticItem }
@@ -56,7 +56,7 @@ type
procedure Write(AData: TStream); override;
end;
TStaticItemList = specialize TFPGObjectList<TStaticItem>;
TStaticItemList = specialize TheObjectVector<TStaticItem>;
{ TStaticBlock}