| 238 | } |
| 239 | |
| 240 | void MesonConfigPage::readUI() |
| 241 | { |
| 242 | qCDebug(KDEV_Meson) << "Reading current build configuration from the UI " << m_current.buildDir.toLocalFile(); |
| 243 | |
| 244 | auto aConf = m_ui->advanced->getConfig(); |
| 245 | m_current.mesonArgs = aConf.args; |
| 246 | m_current.mesonBackend = aConf.backend; |
| 247 | m_current.mesonExecutable = aConf.meson; |
| 248 | } |
| 249 | |
| 250 | void MesonConfigPage::setWidgetsDisabled(bool disabled) |
| 251 | { |
nothing calls this directly
no test coverage detected