* EOControl/EOUndoManager.m (+[class],+[allocWithZone:]): Defer to

NSUndoManager.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@28177 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2009-04-04 21:51:10 +00:00
parent c762ccfcbd
commit fba693af2e
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2009-04-04 David Ayers <ayers@fsfe.org>
* EOControl/EOUndoManager.m (+[class],+[allocWithZone:]): Defer to
NSUndoManager.
2009-03-16 David Ayers <ayers@fsfe.org>
* EOAccess/EODatabase.m (setUpdateStrategy:): Count the snapshots

View file

@ -46,6 +46,17 @@ RCS_ID("$Id$")
@implementation EOUndoManager
+ (Class) class
{
return [NSUndoManager class];
}
+ (id) allocWithZone: (NSZone *)zone
{
return [NSUndoManager allocWithZone: zone];
}
- (void) forgetAllWithTarget: (id)target
{
EOFLOGObjectFnStart();