| 287 | } |
| 288 | |
| 289 | wxString Project::GetProjectFullPath() |
| 290 | { |
| 291 | wxLogMessage("Project::GetProjectFullPath()"); |
| 292 | wxString fp; |
| 293 | if (!GetWorkingDir().GetPath().IsEmpty() && !proj_file_no_ext.IsEmpty()) { |
| 294 | fp << GetWorkingDir().GetPathWithSep(); |
| 295 | fp << proj_file_no_ext << ".gda"; |
| 296 | } |
| 297 | return fp; |
| 298 | } |
| 299 | |
| 300 | void Project::SetProjectFullPath(const wxString& proj_full_path) |
| 301 | { |
no test coverage detected