Add 'breakpoint reached' dialog for all encountered breakpoints.

This commit is contained in:
Ernie Pasveer
2023-04-10 11:51:03 -05:00
parent 697bba1d4c
commit b8c9572e23
+3 -1
View File
@@ -889,7 +889,9 @@ void SeerMainWindow::handleText (const QString& text) {
QString bkptno_text = Seer::parseFirst(text, "bkptno=", '"', '"', false);
QString disp_text = Seer::parseFirst(text, "disp=", '"', '"', false);
if (disp_text != "del") {
if (disp_text == "del") {
QMessageBox::information(this, "Note.", "Program reached temporary breakpoint '" + bkptno_text + "'.");
}else{
QMessageBox::information(this, "Note.", "Program reached breakpoint '" + bkptno_text + "'.");
}