MCPcopy Create free account
hub / github.com/DreamSourceLab/DSView / show_calibration

Method show_calibration

DSView/pv/view/view.cpp:1275–1286  ·  view source on GitHub ↗

-- calibration dialog

Source from the content-addressed store, hash-verified

1273
1274// -- calibration dialog
1275void 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
1288void View::on_calibration_closed()
1289{

Callers

nothing calls this directly

Calls 2

update_device_infoMethod · 0.80
showMethod · 0.45

Tested by

no test coverage detected