| 115 | } |
| 116 | |
| 117 | static inline QFont qwtResolvedFont( const QWidget* widget ) |
| 118 | { |
| 119 | QFont font = widget->font(); |
| 120 | #if QT_VERSION >= 0x060000 |
| 121 | font.setResolveMask( QFont::AllPropertiesResolved ); |
| 122 | #else |
| 123 | font.resolve( QFont::AllPropertiesResolved ); |
| 124 | #endif |
| 125 | |
| 126 | return font; |
| 127 | } |
| 128 | |
| 129 | class QwtPlotRenderer::PrivateData |
| 130 | { |
no test coverage detected