| 261 | } |
| 262 | |
| 263 | bool TextEditor::hasBreakpoint(int line) |
| 264 | { |
| 265 | int mask = static_cast<int>(markersAtLine(line)); |
| 266 | return (mask & (1 << TextEditorPrivate::Breakpoint) || mask & (1 << TextEditorPrivate::BreakpointDisabled)); |
| 267 | } |
| 268 | |
| 269 | void TextEditor::gotoNextBreakpoint() |
| 270 | { |