| 284 | |
| 285 | |
| 286 | void |
| 287 | NodePainter:: |
| 288 | drawResizeRect(QPainter * painter, |
| 289 | NodeGeometry const & geom, |
| 290 | NodeDataModel const * model) |
| 291 | { |
| 292 | if (model->resizable()) |
| 293 | { |
| 294 | painter->setBrush(Qt::gray); |
| 295 | |
| 296 | painter->drawEllipse(geom.resizeRect()); |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | |
| 301 | void |
nothing calls this directly
no outgoing calls
no test coverage detected