| 85 | } |
| 86 | |
| 87 | void LldbConfigPage::saveToConfiguration(KConfigGroup cfg, KDevelop::IProject *) const |
| 88 | { |
| 89 | cfg.writeEntry(Config::LldbExecutableEntry, ui->lineDebuggerExec->url()); |
| 90 | cfg.writeEntry(Config::LldbArgumentsEntry, ui->lineDebuggerArgs->text()); |
| 91 | cfg.writeEntry(Config::LldbEnvironmentEntry, ui->comboEnv->currentProfile()); |
| 92 | cfg.writeEntry(Config::LldbInheritSystemEnvEntry, ui->checkInheritSystem->isChecked()); |
| 93 | cfg.writeEntry(Config::LldbConfigScriptEntry, ui->lineConfigScript->url()); |
| 94 | cfg.writeEntry(KDevMI::Config::BreakOnStartEntry, ui->checkBreakOnStart->isChecked()); |
| 95 | cfg.writeEntry(KDevMI::Config::StartWithEntry, ui->comboStartWith->currentData().toString()); |
| 96 | cfg.writeEntry(Config::LldbRemoteDebuggingEntry, ui->groupRemote->isChecked()); |
| 97 | cfg.writeEntry(Config::LldbRemoteServerEntry, ui->lineRemoteServer->text()); |
| 98 | cfg.writeEntry(Config::LldbRemotePathEntry, ui->lineOnDevPath->text()); |
| 99 | } |
| 100 | |
| 101 | KDevelop::LaunchConfigurationPage * LldbConfigPageFactory::createWidget(QWidget* parent) |
| 102 | { |
nothing calls this directly
no test coverage detected