| 151 | // ── RcxController ── |
| 152 | |
| 153 | RcxController::RcxController(RcxDocument* doc, QWidget* parent) |
| 154 | : QObject(parent), m_doc(doc) |
| 155 | { |
| 156 | fmt::setTypeNameProvider(docTypeNameProvider); |
| 157 | connect(m_doc, &RcxDocument::documentChanged, this, &RcxController::refresh); |
| 158 | setupAutoRefresh(); |
| 159 | } |
| 160 | |
| 161 | RcxController::~RcxController() { |
| 162 | if (m_refreshWatcher) { |
nothing calls this directly
no test coverage detected