Datasaver
| 1532 | |
| 1533 | // Datasaver |
| 1534 | void |
| 1535 | InspectorUI::onToggleRecord(void) |
| 1536 | { |
| 1537 | bool recording = false; |
| 1538 | |
| 1539 | if (this->saverUI->getRecordState()) { |
| 1540 | recording = this->installDataSaver(); |
| 1541 | } else { |
| 1542 | this->uninstallDataSaver(); |
| 1543 | } |
| 1544 | |
| 1545 | this->recording = recording; |
| 1546 | |
| 1547 | this->saverUI->setRecordState(recording); |
| 1548 | } |
| 1549 | |
| 1550 | |
| 1551 | void |
nothing calls this directly
no test coverage detected