* @brief Returns right path. * @param [out] pReadOnly true if readonly was specified for path. * @return Right path. */
| 330 | * @return Right path. |
| 331 | */ |
| 332 | String ProjectFileItem::GetRight(bool * pReadOnly /*= nullptr*/) const |
| 333 | { |
| 334 | if (pReadOnly != nullptr) |
| 335 | *pReadOnly = m_bRightReadOnly; |
| 336 | return m_paths.GetRight(); |
| 337 | } |
| 338 | |
| 339 | /** |
| 340 | * @brief Set right path, returns old right path. |
no outgoing calls