| 113 | } |
| 114 | |
| 115 | void InfoComicsView::setCurrentIndex(const QModelIndex &index) |
| 116 | { |
| 117 | if (list != nullptr) { |
| 118 | QQmlProperty(list, "currentIndex").write(index.row()); |
| 119 | } |
| 120 | |
| 121 | setCurrentIndex(index.row()); |
| 122 | } |
| 123 | |
| 124 | void InfoComicsView::setCurrentIndex(int index) |
| 125 | { |
no test coverage detected