| 217 | } |
| 218 | |
| 219 | void BaseDock::commentChanged() { |
| 220 | if (m_initializing || !m_aspect || m_aspects.size() > 1) |
| 221 | return; |
| 222 | |
| 223 | if (!m_teComment) { |
| 224 | DEBUG("BaseDock: m_teComment not initialized"); |
| 225 | Q_ASSERT(false); |
| 226 | return; |
| 227 | } |
| 228 | |
| 229 | m_aspect->setComment(m_teComment->text()); |
| 230 | } |
| 231 | |
| 232 | void BaseDock::visibleChanged(bool state) { |
| 233 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected