| 242 | } |
| 243 | |
| 244 | void IntrinsicEdManagerWindowBase::onSaveManager() |
| 245 | { |
| 246 | if (_resourceManagerEntry.saveToSingleFileFunction) |
| 247 | { |
| 248 | _resourceManagerEntry.saveToSingleFileFunction( |
| 249 | _managerFilePath.toStdString().c_str()); |
| 250 | } |
| 251 | if (_resourceManagerEntry.saveToMultipleFilesFunction) |
| 252 | { |
| 253 | _resourceManagerEntry.saveToMultipleFilesFunction( |
| 254 | _managerPath.toStdString().c_str(), |
| 255 | _managerExtension.toStdString().c_str()); |
| 256 | } |
| 257 | |
| 258 | new IntrinsicEdNotificationSimple(this, "Saved manager to file..."); |
| 259 | } |
| 260 | |
| 261 | void IntrinsicEdManagerWindowBase::initContextMenu(QMenu* p_ContextMenu) |
| 262 | { |
nothing calls this directly
no outgoing calls
no test coverage detected