| 44 | } |
| 45 | |
| 46 | void AbstractCoordinatePlane::init() |
| 47 | { |
| 48 | d->initialize(); // virtual method to init the correct grid: cartesian, polar, ... |
| 49 | connect(this, SIGNAL(internal_geometryChanged(QRect, QRect)), |
| 50 | this, SIGNAL(geometryChanged(QRect, QRect)), |
| 51 | Qt::QueuedConnection); |
| 52 | } |
| 53 | |
| 54 | void AbstractCoordinatePlane::addDiagram(AbstractDiagram *diagram) |
| 55 | { |
no test coverage detected