! \internal Returns the color that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelColor or mTickLabelColor. */
| 9797 | is either mSelectedTickLabelColor or mTickLabelColor. |
| 9798 | */ |
| 9799 | QColor QCPAxis::getTickLabelColor() const |
| 9800 | { |
| 9801 | return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelColor : mTickLabelColor; |
| 9802 | } |
| 9803 | |
| 9804 | /*! \internal |
| 9805 |
nothing calls this directly
no outgoing calls
no test coverage detected