| 2686 | //------------------------------------------------ |
| 2687 | |
| 2688 | void MainWindow::debugForce() { |
| 2689 | int count = 0; |
| 2690 | if (!guiDebug) { |
| 2691 | debugToggle(); |
| 2692 | } |
| 2693 | while (!guiDebug && count < 20) { |
| 2694 | guiDelay(50); |
| 2695 | count++; |
| 2696 | } |
| 2697 | } |
| 2698 | |
| 2699 | void MainWindow::addVisualizerDock(const QString &magic, const QString &config) { |
| 2700 | if (m_docksVisualizer.contains(magic)) { |
nothing calls this directly
no test coverage detected