| 125 | } |
| 126 | |
| 127 | void |
| 128 | InspectionWidget::closeRequested() |
| 129 | { |
| 130 | // Close requests are handled differently, depending on whether we are |
| 131 | // attached or not. |
| 132 | |
| 133 | if (m_analyzer != nullptr) |
| 134 | m_analyzer->closeInspector(m_request.handle, 0); |
| 135 | else |
| 136 | this->deleteLater(); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | const char * |
nothing calls this directly
no test coverage detected