| 345 | } |
| 346 | |
| 347 | void EmptyUserpic::paintRounded( |
| 348 | QPainter &p, |
| 349 | int x, |
| 350 | int y, |
| 351 | int outerWidth, |
| 352 | int size, |
| 353 | int radius) const { |
| 354 | paint(p, x, y, outerWidth, size, [&] { |
| 355 | p.drawRoundedRect(x, y, size, size, radius, radius); |
| 356 | }); |
| 357 | } |
| 358 | |
| 359 | void EmptyUserpic::paintSquare( |
| 360 | QPainter &p, |
no outgoing calls
no test coverage detected