| 138 | } |
| 139 | |
| 140 | qreal TextAttributes::calculatedFontSize(const QSizeF &referenceSize, |
| 141 | KDChartEnums::MeasureOrientation autoReferenceOrientation) const |
| 142 | { |
| 143 | const qreal normalSize = fontSize().calculatedValue(referenceSize, autoReferenceOrientation); |
| 144 | const qreal minimalSize = minimalFontSize().calculatedValue(referenceSize, autoReferenceOrientation); |
| 145 | return qMax(normalSize, minimalSize); |
| 146 | } |
| 147 | |
| 148 | #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && defined(Q_COMPILER_MANGLES_RETURN_TYPE) |
| 149 | const |
no test coverage detected