Add remote target type to connect method (remote or extended-remote).

This commit is contained in:
Ernie Pasveer
2025-03-08 11:17:01 -06:00
parent e2e82b4286
commit ec6077c4a0
15 changed files with 346 additions and 181 deletions
+10
View File
@@ -230,6 +230,16 @@ bool SeerConfigDialog::gdbEnablePrettyPrinting () const {
return _gdbConfigPage->gdbEnablePrettyPrinting();
}
void SeerConfigDialog::setGdbRemoteTargetType (const QString& type) {
_gdbConfigPage->setGdbRemoteTargetType(type);
}
QString SeerConfigDialog::gdbRemoteTargetType () const {
return _gdbConfigPage->gdbRemoteTargetType();
}
void SeerConfigDialog::setEditorFont (const QFont& font) {
_editorConfigPage->setEditorFont(font);