----------------------------------------------------------------------------
| 2193 | } |
| 2194 | //---------------------------------------------------------------------------- |
| 2195 | void DebuggerBreakpointEditor::conditionTextChanged(const QString &txt) |
| 2196 | { |
| 2197 | if ( txt.size() > 0 ) |
| 2198 | { |
| 2199 | Condition *c = generateCondition( txt.toStdString().c_str() ); |
| 2200 | |
| 2201 | condValid = (c != nullptr); |
| 2202 | |
| 2203 | if (c) |
| 2204 | { |
| 2205 | delete c; c = nullptr; |
| 2206 | } |
| 2207 | } |
| 2208 | else |
| 2209 | { |
| 2210 | condValid = true; |
| 2211 | } |
| 2212 | checkDataValid(); |
| 2213 | } |
| 2214 | //---------------------------------------------------------------------------- |
| 2215 | void DebuggerBreakpointEditor::loadBreakpoint(void) |
| 2216 | { |
nothing calls this directly
no test coverage detected