More work on VarObj visualizer.

This commit is contained in:
Ernie Pasveer
2022-08-21 15:53:35 -05:00
parent 20aa3b2bb3
commit f575ab921a
13 changed files with 318 additions and 39 deletions
+2 -1
View File
@@ -102,7 +102,8 @@ void SeerThreadFramesBrowserWidget::handleText (const QString& text) {
QStringList threads_list = Seer::parse(threads_text, "", '{', '}', false);
for ( const auto& thread_text : threads_list ) {
for ( const auto& thread_text : threads_list ) {
QString id_text = Seer::parseFirst(thread_text, "id=", '"', '"', false);
QString targetid_text = Seer::parseFirst(thread_text, "target-id=", '"', '"', false);
QString name_text = Seer::parseFirst(thread_text, "name=", '"', '"', false);