| 53 | #define d d_func() |
| 54 | |
| 55 | bool AbstractAreaBase::compare(const AbstractAreaBase *other) const |
| 56 | { |
| 57 | if (other == this) |
| 58 | return true; |
| 59 | if (!other) { |
| 60 | return false; |
| 61 | } |
| 62 | return (frameAttributes() == other->frameAttributes()) && (backgroundAttributes() == other->backgroundAttributes()); |
| 63 | } |
| 64 | |
| 65 | void AbstractAreaBase::alignToReferencePoint(const RelativePosition &position) |
| 66 | { |
nothing calls this directly
no test coverage detected