| 1020 | } |
| 1021 | |
| 1022 | void ChatRootView::onEditorCreated(Core::IEditor *editor, const Utils::FilePath &filePath) |
| 1023 | { |
| 1024 | if (isChatEditor(editor)) { |
| 1025 | return; |
| 1026 | } |
| 1027 | |
| 1028 | if (editor && editor->document()) { |
| 1029 | m_currentEditors.append(editor); |
| 1030 | emit openFilesChanged(); |
| 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | QString ChatRootView::chatFileName() const |
| 1035 | { |
nothing calls this directly
no test coverage detected