| 110 | } |
| 111 | |
| 112 | bool MainUI::AddNewExtension(ExtensionFile *extFile) |
| 113 | { |
| 114 | bool result = true; |
| 115 | for (auto adaptixWidget : AdaptixProjects) { |
| 116 | if (adaptixWidget) { |
| 117 | result = adaptixWidget->AddExtension(extFile); |
| 118 | if (!result) |
| 119 | break; |
| 120 | } |
| 121 | } |
| 122 | return result; |
| 123 | } |
| 124 | |
| 125 | bool MainUI::SyncExtension(const QString &Project, ExtensionFile *extFile) |
| 126 | { |
no test coverage detected