Skip to content

Commit

Permalink
Fixed commands with a watchpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
epasveer committed Jan 4, 2025
1 parent 8a19759 commit 4a68657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

## [2.6beta] - 2025-XX-XX
* Starting version 2.6 development cycle.
* Fixed regression when adding commands to a watchpoint.

## [2.5] - 2024-12-24
* Console now supports a subset of ANSI color codes.
Expand Down
2 changes: 1 addition & 1 deletion src/SeerWatchpointsBrowserWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void SeerWatchpointsBrowserWidget::handleText (const QString& text) {
QString cond_text = Seer::parseFirst(bkpt_text, "cond=", '"', '"', false);
QString times_text = Seer::parseFirst(bkpt_text, "times=", '"', '"', false);
QString ignore_text = Seer::parseFirst(bkpt_text, "ignore=", '"', '"', false);
QString script_text = Seer::parseFirst(bkpt_text, "script=", '{', '}', false);
QString script_text = Seer::parseFirst(bkpt_text, "script=", '[', ']', false);
QString original_location_text = Seer::parseFirst(bkpt_text, "original-location=", '"', '"', false);

// Only look for 'watchpoint' type break points.
Expand Down

0 comments on commit 4a68657

Please sign in to comment.