fix createBlockCache definition

git-svn-id: https://profuse.googlecode.com/svn/branches/v2@264 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
ksherlock 2010-05-23 18:35:23 +00:00
parent 06166c2d72
commit 624af11ca1
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ void ProDOSOrderDiskImage::Validate(MappedFile *f)
}
BlockCache *ProDOSOrderDiskImage::createBlockCache(unsigned size)
BlockCache *ProDOSOrderDiskImage::createBlockCache()
{
return new MappedBlockCache(this, address());
}

View File

@ -62,7 +62,7 @@ public:
static ProDOSOrderDiskImage *Open(MappedFile *);
virtual BlockCache *createBlockCache(unsigned size);
virtual BlockCache *createBlockCache();
private:
ProDOSOrderDiskImage(const char *name, bool readOnly);