| 394 | } |
| 395 | |
| 396 | bool CartesianAxis::compare(const CartesianAxis *other) const |
| 397 | { |
| 398 | if (other == this) { |
| 399 | return true; |
| 400 | } |
| 401 | if (!other) { |
| 402 | return false; |
| 403 | } |
| 404 | return AbstractAxis::compare(other) && (position() == other->position()) && (titleText() == other->titleText()) && (titleTextAttributes() == other->titleTextAttributes()); |
| 405 | } |
| 406 | |
| 407 | void CartesianAxis::coordinateSystemChanged() |
| 408 | { |
nothing calls this directly
no test coverage detected