| 43 | } |
| 44 | |
| 45 | QSize CodeLensDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const |
| 46 | { |
| 47 | QSize size = QItemDelegate::sizeHint(option, index); |
| 48 | size.setHeight(24); |
| 49 | return size; |
| 50 | } |
| 51 | |
| 52 | void CodeLensDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, |
| 53 | const QModelIndex &index) const |
no outgoing calls
no test coverage detected