* @brief Set left path, returns old left path. * @param [in] sLeft Left path. * @param [in] bReadOnly Will path be recorded read-only? */
| 293 | * @param [in] bReadOnly Will path be recorded read-only? |
| 294 | */ |
| 295 | void ProjectFileItem::SetLeft(const String& sLeft, const bool * pReadOnly /*= nullptr*/) |
| 296 | { |
| 297 | m_paths.SetLeft(sLeft, false); |
| 298 | if (pReadOnly != nullptr) |
| 299 | m_bLeftReadOnly = *pReadOnly; |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * @brief Returns middle path. |
no outgoing calls