| 388 | } |
| 389 | |
| 390 | bool sameAudioDeviceSelection(const QAudioDevice& lhs, const QAudioDevice& rhs) |
| 391 | { |
| 392 | if (lhs.isNull() && rhs.isNull()) |
| 393 | return true; |
| 394 | if (lhs.isNull() || rhs.isNull()) |
| 395 | return false; |
| 396 | return lhs.id() == rhs.id(); |
| 397 | } |
| 398 | |
| 399 | // memoryRevealTargetMatches moved to MainWindow_Wiring.cpp (#3351 Phase 1d). |
| 400 |
no test coverage detected