| 145 | } |
| 146 | |
| 147 | void PathUtils::SavePythonPathSettings() { |
| 148 | QSettings settings("MoreFun", "LoliProfiler"); |
| 149 | if (!pythonPath_.isEmpty() && QFile::exists(pythonPath_)) { |
| 150 | settings.setValue(SETTINGS_PYTHON_PATH, pythonPath_); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | |
| 155 | QString PathUtils::GetEnvVar(const char* var) { |
nothing calls this directly
no outgoing calls
no test coverage detected