* @brief Returns middle path. * @param [out] pReadOnly true if readonly was specified for path. */
| 304 | * @param [out] pReadOnly true if readonly was specified for path. |
| 305 | */ |
| 306 | String ProjectFileItem::GetMiddle(bool * pReadOnly /*= nullptr*/) const |
| 307 | { |
| 308 | if (pReadOnly != nullptr) |
| 309 | *pReadOnly = m_bMiddleReadOnly; |
| 310 | return m_paths.GetMiddle(); |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * @brief Set middle path, returns old middle path. |
no outgoing calls
no test coverage detected