| 60 | } |
| 61 | |
| 62 | void IBreakpointController::updateErrorText(int row, const QString& errorText) |
| 63 | { |
| 64 | breakpointModel()->updateErrorText(row, errorText); |
| 65 | |
| 66 | if (errorText.isEmpty()) { |
| 67 | return; |
| 68 | } |
| 69 | |
| 70 | auto* const errorNotification = new KNotification(QStringLiteral("BreakpointError")); |
| 71 | errorNotification->setText(errorText); |
| 72 | errorNotification->sendEvent(); |
| 73 | } |
| 74 | |
| 75 | void IBreakpointController::notifyHit(int row, const QString& msg) |
| 76 | { |
nothing calls this directly
no test coverage detected