| 1118 | void QCPLayer::draw(QCPPainter *painter) |
| 1119 | { |
| 1120 | foreach (QCPLayerable *child, mChildren) |
| 1121 | { |
| 1122 | if (child->realVisibility()) |
| 1123 | { |
| 1124 | painter->save(); |
| 1125 | painter->setClipRect(child->clipRect().translated(0, -1)); |
| 1126 | child->applyDefaultAntialiasingHint(painter); |
| 1127 | child->draw(painter); |
| 1128 | painter->restore(); |
| 1129 | } |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | /*! \internal |
no test coverage detected