| 170 | } |
| 171 | |
| 172 | TemporarilyReleaseForegroundLock::~TemporarilyReleaseForegroundLock() |
| 173 | { |
| 174 | for (int a = 0; a < m_recursion; ++a) |
| 175 | lockForegroundMutexInternal(); |
| 176 | |
| 177 | Q_ASSERT(recursion == m_recursion && holderThread == QThread::currentThread()); |
| 178 | } |
| 179 | |
| 180 | KDevelop::ForegroundLock::~ForegroundLock() |
| 181 | { |
nothing calls this directly
no test coverage detected