mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
Fixed #275.
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user