| 54 | } |
| 55 | |
| 56 | void QMakeBuildDirChooserDialog::saveConfig() |
| 57 | { |
| 58 | // store this builds config |
| 59 | m_chooserUi->saveConfig(); |
| 60 | |
| 61 | // also save as current values |
| 62 | KConfigGroup config(m_chooserUi->project()->projectConfiguration(), QMakeConfig::CONFIG_GROUP()); |
| 63 | m_chooserUi->saveConfig(config); |
| 64 | config.writeEntry(QMakeConfig::BUILD_FOLDER, buildDir()); |
| 65 | } |
| 66 | |
| 67 | QString QMakeBuildDirChooserDialog::buildDir() const |
| 68 | { |
nothing calls this directly
no test coverage detected