| 221 | } |
| 222 | |
| 223 | bool ProjectActionsController::saveProject(const muse::io::path_t& path) |
| 224 | { |
| 225 | //! TODO AU4: this should ask for local/cloud save |
| 226 | //! use saveProject(SaveMode saveMode, SaveLocationType saveLocationType, bool force) |
| 227 | //! when implemented |
| 228 | //! |
| 229 | //! for now it saves at current file |
| 230 | return saveProjectLocally(path); |
| 231 | } |
| 232 | |
| 233 | bool ProjectActionsController::saveProjectLocally(const muse::io::path_t& filePath, SaveMode saveMode) |
| 234 | { |
nothing calls this directly
no test coverage detected