| 12 | #include <QtWidgets/QMessageBox> |
| 13 | |
| 14 | ImportDeviceDialog::ImportDeviceDialog(QWidget* parent) |
| 15 | : QDialog(parent) |
| 16 | { |
| 17 | setupUi(this); |
| 18 | |
| 19 | this->treeWidgetDevice->headerItem()->setText(0, ""); |
| 20 | this->treeWidgetDevice->setColumnWidth(0, 25); |
| 21 | } |
| 22 | |
| 23 | void ImportDeviceDialog::setImportFile(const QString& path) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected