| 203 | } |
| 204 | |
| 205 | QString ComicDB::getTitleOrFileName() const |
| 206 | { |
| 207 | if (!info.title.isNull() && !info.title.toString().isEmpty()) |
| 208 | return info.title.toString(); |
| 209 | else |
| 210 | return QFileInfo(path).fileName(); |
| 211 | } |
| 212 | |
| 213 | QString ComicDB::getParentFolderName() const |
| 214 | { |
no test coverage detected