| 449 | } |
| 450 | |
| 451 | bool QuaZipFile::getFileInfo(QuaZipFileInfo *info) |
| 452 | { |
| 453 | QuaZipFileInfo64 info64; |
| 454 | if (!getFileInfo(&info64)) { |
| 455 | return false; |
| 456 | } |
| 457 | info64.toQuaZipFileInfo(*info); |
| 458 | return true; |
| 459 | } |
| 460 | |
| 461 | bool QuaZipFile::getFileInfo(QuaZipFileInfo64 *info) |
| 462 | { |
nothing calls this directly
no test coverage detected