Skip to content

Commit

Permalink
Merge pull request #285 from epasveer/284-editing-existing-commands-o…
Browse files Browse the repository at this point in the history
…n-a-watchpoint-is-broken

Fixed commands with a watchpoint.
  • Loading branch information
epasveer authored Jan 4, 2025
2 parents 8a19759 + 4a68657 commit c4374df
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 c4374df

Please sign in to comment.