| 93 | } |
| 94 | |
| 95 | bool Bookmarks::load(const QList<int> &bookmarkIndexes, int lastPage) |
| 96 | { |
| 97 | lastPageIndex = lastPage; |
| 98 | for (const int b : std::as_const(bookmarkIndexes)) |
| 99 | if (b != -1) { |
| 100 | latestBookmarks.push_back(b); |
| 101 | bookmarks.insert(b, QImage()); |
| 102 | } |
| 103 | |
| 104 | return true; |
| 105 | } |
| 106 | |
| 107 | void Bookmarks::save() |
| 108 | { |