| 717 | } |
| 718 | |
| 719 | void Project::SpecifyProjectConfFile(const wxString& proj_fname) |
| 720 | { |
| 721 | wxLogMessage("Project::SpecifyProjectConfFile()"); |
| 722 | if (proj_fname.IsEmpty()) { |
| 723 | wxString msg = _("Project filename not specified."); |
| 724 | throw GdaException(msg.mb_str()); |
| 725 | } |
| 726 | project_conf->SetFilePath(proj_fname); |
| 727 | SetProjectFullPath(proj_fname); |
| 728 | } |
| 729 | |
| 730 | bool Project::HasUnsavedChange() |
| 731 | { |
no test coverage detected