----------------------------------------------------------------------------- Comic interface -----------------------------------------------------------------------------
| 663 | // Comic interface |
| 664 | //----------------------------------------------------------------------------- |
| 665 | void Render::load(const QString &path, int atPage) |
| 666 | { |
| 667 | createComic(path); |
| 668 | if (comic != nullptr) { |
| 669 | loadComic(path, atPage); |
| 670 | startLoad(); |
| 671 | } |
| 672 | } |
| 673 | |
| 674 | //----------------------------------------------------------------------------- |
| 675 | void Render::load(const QString &path, const ComicDB &comicDB) |
no test coverage detected