* @brief Set middle path, returns old middle path. * @param [in] sMiddle Middle path. * @param [in] bReadOnly Will path be recorded read-only? */
| 316 | * @param [in] bReadOnly Will path be recorded read-only? |
| 317 | */ |
| 318 | void ProjectFileItem::SetMiddle(const String& sMiddle, const bool * pReadOnly /*= nullptr*/) |
| 319 | { |
| 320 | m_paths.SetMiddle(sMiddle, false); |
| 321 | if (pReadOnly != nullptr) |
| 322 | m_bMiddleReadOnly = *pReadOnly; |
| 323 | |
| 324 | return; |
| 325 | } |
| 326 | |
| 327 | /** |
| 328 | * @brief Returns right path. |
no outgoing calls