This commit is contained in:
Ernie Pasveer
2024-11-29 10:58:36 -06:00
parent 97cc2e97a4
commit 1c9826dffe
4 changed files with 32 additions and 2 deletions
+2 -2
View File
@@ -130,7 +130,7 @@ void SeerBreakpointsBrowserWidget::handleText (const QString& text) {
// Then morph that list into a map, delimited by a '='.
// Remove bookends.
//
QStringList items = Seer::parseCommaList(bkpt_text);
QStringList items = Seer::parseCommaList(bkpt_text, '[', ']');
QMap<QString,QString> keyValueMap = Seer::createKeyValueMap(items, '=');
@@ -147,7 +147,7 @@ void SeerBreakpointsBrowserWidget::handleText (const QString& text) {
QString cond_text = Seer::filterBookends(keyValueMap["cond"], '"', '"');
QString times_text = Seer::filterBookends(keyValueMap["times"], '"', '"');
QString ignore_text = Seer::filterBookends(keyValueMap["ignore"], '"', '"');
QString script_text = Seer::filterBookends(keyValueMap["script"], '{', '}');
QString script_text = Seer::filterBookends(keyValueMap["script"], '[', ']');
QString original_location_text = Seer::filterBookends(keyValueMap["original-location"], '"', '"');
// Only look for 'breakpoint' type break points.