! \internal Returns the color that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelColor or mTickLabelColor. */
| 9086 | is either mSelectedTickLabelColor or mTickLabelColor. |
| 9087 | */ |
| 9088 | QColor QCPAxis::getTickLabelColor() const |
| 9089 | { |
| 9090 | return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelColor : mTickLabelColor; |
| 9091 | } |
| 9092 | |
| 9093 | /*! \internal |
| 9094 |
nothing calls this directly
no outgoing calls
no test coverage detected