| 576 | } |
| 577 | |
| 578 | void IDE::registerEditor(const QString& path, CodeEditor* ce) |
| 579 | { |
| 580 | DMap::iterator it = documents.find(path); |
| 581 | QSet<CodeEditor*>& editors = it.value()->editors; |
| 582 | editors.insert(ce); |
| 583 | } |
| 584 | |
| 585 | void IDE::removeEditor(const QString& path, CodeEditor* ce) |
| 586 | { |
no test coverage detected