| 113 | } |
| 114 | |
| 115 | bool ProjectFile::Save() |
| 116 | { |
| 117 | if (m_NeverSaved) |
| 118 | return false; |
| 119 | |
| 120 | if (SaveConfigFile(m_ProjectFilePathName)) |
| 121 | { |
| 122 | SetProjectChange(false); |
| 123 | return true; |
| 124 | } |
| 125 | |
| 126 | return false; |
| 127 | } |
| 128 | |
| 129 | bool ProjectFile::SaveAs(const std::string& vFilePathName) |
| 130 | { |
nothing calls this directly
no outgoing calls
no test coverage detected