! \internal Returns the font that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelFont or mTickLabelFont. */
| 9066 | is either mSelectedTickLabelFont or mTickLabelFont. |
| 9067 | */ |
| 9068 | QFont QCPAxis::getTickLabelFont() const |
| 9069 | { |
| 9070 | return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelFont : mTickLabelFont; |
| 9071 | } |
| 9072 | |
| 9073 | /*! \internal |
| 9074 |
nothing calls this directly
no outgoing calls
no test coverage detected