-- calibration dialog
| 1273 | |
| 1274 | // -- calibration dialog |
| 1275 | void View::show_calibration() |
| 1276 | { |
| 1277 | if (_cali != NULL){ |
| 1278 | _cali->deleteLater(); |
| 1279 | _cali = NULL; |
| 1280 | } |
| 1281 | |
| 1282 | _cali = new pv::dialogs::Calibration(this); |
| 1283 | connect(_cali, SIGNAL(sig_closed()), this, SLOT(on_calibration_closed())); |
| 1284 | _cali->update_device_info(); |
| 1285 | _cali->show(); |
| 1286 | } |
| 1287 | |
| 1288 | void View::on_calibration_closed() |
| 1289 | { |
nothing calls this directly
no test coverage detected