| 933 | } |
| 934 | |
| 935 | int TabWidget::zoomValue() |
| 936 | { |
| 937 | if (auto editor = d->currentTextEditor()) |
| 938 | return static_cast<int>(editor->SendScintilla(TextEditor::SCI_GETZOOM)); |
| 939 | |
| 940 | return 0; |
| 941 | } |
| 942 | |
| 943 | void TabWidget::updateZoomValue(int value) |
| 944 | { |
no test coverage detected