| 22 | } |
| 23 | |
| 24 | void AbstractDocumentView::paintEvent(QPaintEvent *) |
| 25 | { |
| 26 | QStyleOption opt; |
| 27 | opt.init(this); |
| 28 | QPainter p(this); |
| 29 | style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this); |
| 30 | } |
| 31 | |
| 32 | QList<QAction *> AbstractDocumentView::TabContextMenuActions() |
| 33 | { |
nothing calls this directly
no test coverage detected