| 158 | } |
| 159 | |
| 160 | TemporarilyReleaseForegroundLock::TemporarilyReleaseForegroundLock() |
| 161 | { |
| 162 | Q_ASSERT(holderThread == QThread::currentThread()); |
| 163 | |
| 164 | m_recursion = 0; |
| 165 | |
| 166 | while (holderThread == QThread::currentThread()) { |
| 167 | unlockForegroundMutexInternal(); |
| 168 | ++m_recursion; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | TemporarilyReleaseForegroundLock::~TemporarilyReleaseForegroundLock() |
| 173 | { |
nothing calls this directly
no test coverage detected