| 1560 | } |
| 1561 | |
| 1562 | void DocumentPrivate::fontReadingGotFont(const Okular::FontInfo &font) |
| 1563 | { |
| 1564 | // Try to avoid duplicate fonts |
| 1565 | if (m_fontsCache.indexOf(font) == -1) { |
| 1566 | m_fontsCache.append(font); |
| 1567 | |
| 1568 | Q_EMIT m_parent->gotFont(font); |
| 1569 | } |
| 1570 | } |
| 1571 | |
| 1572 | void DocumentPrivate::slotGeneratorConfigChanged() |
| 1573 | { |
no test coverage detected