| 259 | } |
| 260 | |
| 261 | void DsoTriggerDock::margin_changed(int margin) |
| 262 | { |
| 263 | int ret; |
| 264 | ret = _session->get_device()->set_config_byte(SR_CONF_TRIGGER_MARGIN, margin); |
| 265 | if (!ret) { |
| 266 | QString strMsg(L_S(STR_PAGE_MSG, S_ID(IDS_MSG_CHANGE_SENSITIVITY_FAIL), |
| 267 | "Change trigger value sensitivity failed!")); |
| 268 | MsgBox::Show(strMsg); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | void DsoTriggerDock::source_changed() |
| 273 | { |
nothing calls this directly
no test coverage detected