| 192 | } |
| 193 | |
| 194 | bool ConfigurationManager::ensureDirectoryExists(ConfigurationType type) const |
| 195 | { |
| 196 | QDir dir(getConfigurationDirectory(type)); |
| 197 | if (!dir.exists()) { |
| 198 | return dir.mkpath("."); |
| 199 | } |
| 200 | return true; |
| 201 | } |
| 202 | |
| 203 | bool ConfigurationManager::loadConfigurations(ConfigurationType type) |
| 204 | { |
nothing calls this directly
no outgoing calls
no test coverage detected