* @brief Returns left path. * @param [out] pReadOnly true if readonly was specified for path. * @return Left path. */
| 281 | * @return Left path. |
| 282 | */ |
| 283 | String ProjectFileItem::GetLeft(bool * pReadOnly /*= nullptr*/) const |
| 284 | { |
| 285 | if (pReadOnly != nullptr) |
| 286 | *pReadOnly = m_bLeftReadOnly; |
| 287 | return m_paths.GetLeft(); |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * @brief Set left path, returns old left path. |
no outgoing calls