| 211 | } |
| 212 | |
| 213 | QString ComicDB::getParentFolderName() const |
| 214 | { |
| 215 | QStringList paths = path.split('/'); |
| 216 | if (paths.length() < 2) |
| 217 | return ""; |
| 218 | else |
| 219 | return paths[paths.length() - 2]; |
| 220 | } |
| 221 | |
| 222 | qulonglong ComicDB::getFileSize() const |
| 223 | { |
no test coverage detected