| 276 | } |
| 277 | |
| 278 | QList<QModelIndex> getEntryData(const QAbstractItemView *view, int column) |
| 279 | { |
| 280 | if(!view || !view->selectionModel()) |
| 281 | return QList<QModelIndex>(); |
| 282 | return view->selectionModel()->selectedRows(column); |
| 283 | } |
| 284 | |
| 285 | bool hasEntryData(const QAbstractItemView *view, int column, int role) |
| 286 | { |
no outgoing calls
no test coverage detected