| 89 | } |
| 90 | |
| 91 | QString Settings::getSettingsTplPath() |
| 92 | { |
| 93 | QDir curdir(getSEGSDir()); // Get the SEGS working directory |
| 94 | if(!fileExists(curdir.absolutePath() + QDir::separator() + s_default_settings_path)) |
| 95 | qWarning() << "Cannot find" << s_default_settings_path; |
| 96 | |
| 97 | return curdir.absolutePath() + QDir::separator() + s_default_settings_path; |
| 98 | } |
| 99 | |
| 100 | QString Settings::getTemplateDirPath() |
| 101 | { |
nothing calls this directly
no test coverage detected