| 511 | } |
| 512 | |
| 513 | void AnnotationActionHandlerPrivate::slotSelectAnnotationFont() |
| 514 | { |
| 515 | bool ok; |
| 516 | QFont selectedFont = QFontDialog::getFont(&ok, currentFont); |
| 517 | if (ok) { |
| 518 | currentFont = selectedFont; |
| 519 | annotator->setAnnotationFont(currentFont); |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | bool AnnotationActionHandlerPrivate::isQuickToolAction(QAction *aTool) |
| 524 | { |
nothing calls this directly
no test coverage detected