* @brief Set right path, returns old right path. * @param [in] sRight Right path. * @param [in] bReadOnly Will path be recorded read-only? */
| 342 | * @param [in] bReadOnly Will path be recorded read-only? |
| 343 | */ |
| 344 | void ProjectFileItem::SetRight(const String& sRight, const bool * pReadOnly /*= nullptr*/) |
| 345 | { |
| 346 | m_paths.SetRight(sRight, false); |
| 347 | if (pReadOnly != nullptr) |
| 348 | m_bRightReadOnly = *pReadOnly; |
| 349 | } |
| 350 | |
| 351 | /** |
| 352 | * @brief Returns left and right paths and recursive from project file |
no outgoing calls