| 133 | } |
| 134 | |
| 135 | static QLabel *plainLabel(const QString &text) { |
| 136 | auto *l = new QLabel; |
| 137 | l->setTextFormat(Qt::PlainText); |
| 138 | l->setText(text); |
| 139 | return l; |
| 140 | } |
| 141 | |
| 142 | static QWidget *deviceHeader(const QString &name, const QString &iconName) { |
| 143 | auto *row = new QWidget; |
no outgoing calls
no test coverage detected