| 60 | ConnectionsTab::~ConnectionsTab() = default; |
| 61 | |
| 62 | static int mapToSourceRow(const QModelIndex &index) |
| 63 | { |
| 64 | QModelIndex i = index; |
| 65 | while (const QAbstractProxyModel *proxy = qobject_cast<const QAbstractProxyModel *>(i.model())) |
| 66 | i = proxy->mapToSource(i); |
| 67 | return i.row(); |
| 68 | } |
| 69 | |
| 70 | void ConnectionsTab::inboundContextMenu(const QPoint &pos) |
| 71 | { |
no test coverage detected