Index: src/exceptions/OFHashAlreadyCalculatedException.h ================================================================== --- src/exceptions/OFHashAlreadyCalculatedException.h +++ src/exceptions/OFHashAlreadyCalculatedException.h @@ -49,7 +49,7 @@ hash: (OFHash*)hash; /** * \return The hash which has already been calculated */ -- (OFHash*)hash; +- (OFHash*)hashObject; @end Index: src/exceptions/OFHashAlreadyCalculatedException.m ================================================================== --- src/exceptions/OFHashAlreadyCalculatedException.m +++ src/exceptions/OFHashAlreadyCalculatedException.m @@ -70,10 +70,10 @@ @"data can be added", inClass]; return description; } -- (OFHash*)hash +- (OFHash*)hashObject { return hash; } @end