| 916 | } |
| 917 | |
| 918 | TextLayoutLock::TextLayoutLock(OutputWidget* o, bool scroll) : _o(o), _scroll(scroll) { |
| 919 | if (_o->_frame != _o->ui->textBrowser->document()->rootFrame()) { |
| 920 | auto frameVisible = _o->isFrameVisible(_o->_frame); |
| 921 | if (!frameVisible) { |
| 922 | _o->toggleFrameVisibility(_o->_frame); |
| 923 | } |
| 924 | } |
| 925 | _o->ui->textBrowser->textCursor().beginEditBlock(); |
| 926 | } |
| 927 | |
| 928 | TextLayoutLock::~TextLayoutLock() |
| 929 | { |
nothing calls this directly
no test coverage detected