| 3832 | |
| 3833 | |
| 3834 | QC_MDIWindow* QC_ApplicationWindow::getWindowWithDoc(const RS_Document* doc) |
| 3835 | { |
| 3836 | QC_MDIWindow* wwd = nullptr; |
| 3837 | |
| 3838 | if (doc) { |
| 3839 | foreach (QC_MDIWindow* w, window_list) { |
| 3840 | if (w && w->getDocument() == doc) { |
| 3841 | wwd = w; |
| 3842 | break; |
| 3843 | } |
| 3844 | } |
| 3845 | } |
| 3846 | return wwd; |
| 3847 | } |
| 3848 | |
| 3849 | void QC_ApplicationWindow::activateWindowWithFile(QString& fileName) |
| 3850 | { |
no outgoing calls
no test coverage detected