Don't subclass ArjFile from Common::File (there seems to be no good reason for it). BTW, this code is an abomination and should be replaced by an Archive/SearchSet approach
svn-id: r34681
This commit is contained in:
parent
a4292055f7
commit
a177ebe156
2 changed files with 7 additions and 7 deletions
|
@ -324,15 +324,15 @@ uint32 ArjFile::read(void *dataPtr, uint32 dataSize) {
|
|||
return _uncompressed->read(dataPtr, dataSize);
|
||||
}
|
||||
|
||||
bool ArjFile::eos() {
|
||||
bool ArjFile::eos() const {
|
||||
return _uncompressed->eos();
|
||||
}
|
||||
|
||||
int32 ArjFile::pos() {
|
||||
int32 ArjFile::pos() const {
|
||||
return _uncompressed->pos();
|
||||
}
|
||||
|
||||
int32 ArjFile::size() {
|
||||
int32 ArjFile::size() const {
|
||||
return _uncompressed->size();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue