| 87 | } |
| 88 | |
| 89 | QWidget* FileListView::getWidgetByFilePath(QString filePath) |
| 90 | { |
| 91 | if (m_fileEditMap.contains(filePath)) |
| 92 | { |
| 93 | return m_fileEditMap.value(filePath).pEditWidget; |
| 94 | } |
| 95 | return nullptr; |
| 96 | } |
| 97 | |
| 98 | void FileListView::setCurItem(QString filePath) |
| 99 | { |
no test coverage detected